Scilab 5.3.0
- Scilab Online Help
- Scilab
- Scilab keywords
- TMPDIR
- abort
- add_demo
- argn
- banner
- boolean
- break
- clear
- clearfun
- clearglobal
- comp
- continue
- debug
- delbpt
- dispbpt
- edit
- errcatch
- errclear
- error
- error_table
- exists
- exit
- external
- extraction
- format
- funcprot
- funptr
- getdebuginfo
- getmd5
- getmemory
- getmodules
- getos
- getscilabmode
- getshell
- getvariablesonstack
- getversion
- gstacksize
- ieee
- insertion
- intppty
- inv_coeff
- iserror
- isglobal
- lasterror
- macr2lst
- macr2tree
- matrices
- matrix
- mode
- mtlb_mode
- names
- newfun
- null
- pause
- perl
- poly
- predef
- quit
- rational
- readgateway
- resume
- sciargs
- scilab
- setbpt
- sethomedirectory
- stacksize
- startup
- symbols
- testmatrix
- type
- typename
- user
- varn
- ver
- warning
- what
- where
- whereami
- who
- who_user
- whos
- with_atlas
- with_gtk
- with_javasci
- with_macros_source
- with_module
- with_pvm
- with_texmacs
- with_tk
Please note that the recommended version of Scilab is 2024.1.0. This page might be outdated.
See the recommended documentation of this function
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)
は, k
が Mp
の
大きさと互換性がある場合, k次の多項式行列を返します.
C=[C0,C1,...,Ck]
の時,
P= C0 + C1*x +... +Ck*x^k
となります.
例
<< intppty | Scilab | iserror >> |