LinearAlgebra[Adjoint] - 正方行列の随伴行列の計算
使い方
Adjoint(A, outopts)
パラメータ
A - 正方行列
outopts - (オプション) outputoptions=list の形をした等式; 結果として得られるオブジェクトのコンストラクタオプション
|
説明
|
|
•
|
Adjoint(A) 関数は、A. M = Determinant(A) . IdentityMatrix(Dimensions(A)) の条件をみたすような行列 M を作成します。
|
|
A が正則行列なら、随伴行列は一意的に決まります。
|
•
|
outputoptions オプション (outopts) は、結果を作成する Matrix コンストラクタに付加情報 (readonly, shape, storage, order, datatype, attributes) を与えます。
|
•
|
この関数は LinearAlgebra パッケージの一部ですから、with(LinearAlgebra) を実行した後にのみ Adjoint(..) の形で使うことができます。ただし、長い形の名前 LinearAlgebra[Adjoint](..) を使えばいつでもアクセスすることができます。
|
|
|
例
|
|
>
|
with(LinearAlgebra):
A1 := <<9,4,1>|<1,3,-1>|<0,8,1>>:
C1 := Adjoint(A1, outputoptions=[datatype=float]);
|
| (2.1) |
| (2.2) |
| (2.3) |
>
|
A2 := <<a,2*a>|<3,-a>>:
C2 := Adjoint(A2);
|
| (2.4) |
| (2.5) |
| (2.6) |
|
|
Download Help Document
Was this information helpful?