inverse
説明
例
次のようにローラン多項式を作成します。
lpA = laurentPolynomial(Coefficients=[1 1],MaxOrder=1); lpB = laurentPolynomial(Coefficients=[1 1 0 1],MaxOrder=2); lpC = laurentPolynomial(Coefficients=[1],MaxOrder=1); lpD = laurentPolynomial(Coefficients=[1 0 0 1],MaxOrder=2);
行列 lmat
= を作成します。lmat
の行列式を求めます。
lmat = laurentMatrix(Elements={lpA,lpB;lpC,lpD}); det(lmat)
ans = laurentPolynomial with properties: Coefficients: 1 MaxOrder: -1
行列式は非ゼロの単項式です。lmat
の逆行列を求めます。逆行列の成分を調べます。
lmatinv = inverse(lmat); lmatinv.Elements{1,1}
ans = laurentPolynomial with properties: Coefficients: [1 0 0 1] MaxOrder: 3
lmatinv.Elements{1,2}
ans = laurentPolynomial with properties: Coefficients: [-1 -1 0 -1] MaxOrder: 3
lmatinv.Elements{2,1}
ans = laurentPolynomial with properties: Coefficients: -1 MaxOrder: 2
lmatinv.Elements{2,2}
ans = laurentPolynomial with properties: Coefficients: [1 1] MaxOrder: 2
lmat
とその逆行列の積が単位行列に等しいことを確認します。
matprod = lmat*lmatinv; matprod.Elements{1,1}
ans = laurentPolynomial with properties: Coefficients: 1 MaxOrder: 0
matprod.Elements{1,2}
ans = laurentPolynomial with properties: Coefficients: 0 MaxOrder: 0
matprod.Elements{2,1}
ans = laurentPolynomial with properties: Coefficients: 0 MaxOrder: 0
matprod.Elements{2,2}
ans = laurentPolynomial with properties: Coefficients: 1 MaxOrder: 0
入力引数
ローラン行列。laurentMatrix
オブジェクトとして指定します。
出力引数
ローラン行列の逆行列。laurentMatrix
オブジェクトとして返されます。
拡張機能
C/C++ コード生成
MATLAB® Coder™ を使用して C および C++ コードを生成します。
バージョン履歴
R2021b で導入
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)