Go to the first, previous, next, last section, table of contents.


f_res.support

f_res.support(Equation,Vars)
:: 多項式の support を返す
return
リストのリスト
Equation
多項式
Vars
不定元のリスト
[0] f_res.support( x^2 + x*y + y^2, [x,y] );
[[0,2],[1,1],[2,0]]
[1] f_res.support( x^2 + x*y + y^2, [x,y,z] );
[[0,2,0],[1,1,0],[2,0,0]]


Go to the first, previous, next, last section, table of contents.