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


coeff

多項式行列の係数

呼び出し手順

C = coeff(Mp)
C = coeff(Mp, degrees)

パラメータ

Mp

多項式行列

v

整数 (行または列), 選択した次数のベクトル

C

大きな係数の行列

説明

C=coeff(Mp) 多項式行列Mpの係数である大きな 行列Cを返します. CC=[C0,C1,...,Ck]のように 分割されます. ただし,Ciは昇順 k = max(degree(Mp))に並べられています.

C=coeff(Mp,v)degreesの次数の行列の係数を返します (degrees は行または列ベクトルです).

s = %s;
w = s*rand(10,10);
determ(w)
coeff(w,1)

r = poly([0 -1+%i -1-%i],'s',"roots");
coeff(r)

r = poly([-1-%i -1+2*%i 0],'s',"roots");
coeff(r)

参照

  • poly — Polynomial definition from given roots or coefficients, or characteristic to a square matrix.
  • degree — 多項式行列の次数
  • inv_coeff — 係数を指定して多項式行列を作成
Report an issue
<< cmndred Polynomials coffg >>

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:
Tue Mar 07 09:28:45 CET 2023