Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.2 - 日本語

Change language to:
English - Français - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilabヘルプ >> Polynomials > coffg

coffg

多項式行列の逆

呼び出し手順

[Ns,d]=coffg(Fs)

パラメータ

Fs

正方多項式行列

説明

coffgFs^-1 を計算します. ただし, Fs は余因子法による多項式行列です.

Fs inverse = Ns/d

d = 共通分母; Ns = 分子 (多項式行列)

(大きな行列の場合,時間がかかりますが,結果は一般に信頼できます)

s=poly(0,'s')
a=[ s, s^2+1; s  s^2-1];
[a1,d]=coffg(a);
(a1/d)-inv(a)

参照

  • determ — 多項式行列の行列式
  • detr — 多項式の行列式
  • invr — (有理) 行列の逆
  • penlaur — 行列ペンシルのローラン係数
  • glever — 行列ペンシルの逆
Report an issue
<< coeff Polynomials colcompr >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Apr 01 10:25:01 CEST 2015