LinearAlgebra[CharacteristicMatrix] - 固有行列の作成
使い方
CharacteristicMatrix(A, lambda, outopts)
パラメータ
A - 正方行列
lambda - 名前; 変数として使用
outopts - (オプション) outputoptions=list の形をした等式; 結果として得られるオブジェクトのコンストラクタオプション
|
説明
|
|
•
|
CharacteristicMatrix(A, lambda) 関数は固有行列 M = A - lambda * I を作成します。ただし、I は適切なサイズの単位行列です。Determinant(M) を用いて求められる M の行列式は、A の になります。
|
•
|
outputoptions オプション (outopts) は、結果を作成する Matrix コンストラクタに追加情報 (readonly, shape, storage, order, datatype, attributes) を与えます。
|
•
|
この関数は LinearAlgebra パッケージの一部ですから、コマンド with(LinearAlgebra) を実行した後にのみ CharacteristicMatrix(..) の形で使うことができます。ただし、長い形の名前 LinearAlgebra[CharacteristicMatrix](..) を使えばいつでもアクセスすることができます。
|
|
|
例
|
|
>
|
with(LinearAlgebra):
A := <<1,2,3>|<1,2,3>|<1,5,6>>;
|
| (2.1) |
>
|
CharacteristicMatrix(A,lambda);
|
| (2.2) |
|
|
Download Help Document
Was this information helpful?