Scilab-Branch-5.3-GIT
- Scilab 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 2025.0.0. This page might be outdated.
See the recommended documentation of this function
varn
多項式の記号変数
呼出し手順
[symb]=varn(p) [pm]=varn(x,var)
パラメータ
- p
多項式 (または多項式行列)
- symb
文字列
- x
多項式または多項式行列
- var
記号変数 (文字列)
- pm
行列または多項式行列
説明
symb=varn(p)
は,
多項式p
の記号変数 symb
を返します
(すなわち,varn(poly(0,'x'))
は 'x'
です).
varn(x,'s')
は,x
と
同じ係数を有し,'s'
を記号変数とする
多項式行列を返します(変数名の変更).
例
s=poly(0,'s');p=[s^2+1,s]; varn(p) varn(p,'x')
<< user | Scilab | ver >> |