Scilab 6.0.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
varn
多項式または有理分数のシンボリック変数
呼出し手順
[symb]=varn(p) [pm]=varn(p,varname)
パラメータ
- p
多項式のか合理的な画分の行列
- symb
文字列
- varname
記号変数 (文字列)
- pm
多項式のか合理的な画分の行列
説明
symb=varn(p)
は,
多項式p
の記号変数 symb
を返します
(すなわち,varn(poly(0,'x'))
は 'x'
です).
varn(p,'s')
は,p
と
同じ係数を有し,'s'
を記号変数とする
多項式行列を返します(変数名の変更).
例
s = poly(0,'s'); p = [s^2+1,s]; varn(p) varn(p,'x') f = %z / (%z-1); f = [f f^2] varn(f) varn(f,"x")
履歴
バージョン | 記述 |
5.5.1 | Extension to rationals |
Report an issue | ||
<< sylm | Polynomials | Signal Processing >> |