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

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 manual >> Scilab > inv_coeff

inv_coeff

係数を指定して多項式行列を作成

呼び出し手順

[P]=inv_coeff(C,[,d,[name])

パラメータ

C

係数の行列

d

多項式行列の次数. オプションのパラメータでデフォルト値は d=-1+size(C,'c')/size(C,'r')

name

多項式の変数名を指定する文字列 (デフォルト値: 'x').

説明

P=inv_coeff(Mp,k)は, kMp の 大きさと互換性がある場合, k次の多項式行列を返します. C=[C0,C1,...,Ck] の時, P= C0 + C1*x +... +Ck*x^kとなります.

A=int(10*rand(2,6))
// 1次の多項式行列を作成
P=inv_coeff(A,1)
norm(coeff(P)-A)
// 次数にデフォルト値を使用
P1=inv_coeff(A)
norm(coeff(P1)-A)
<< intppty Scilab iserror >>

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 Jan 26 16:25:00 CET 2011