Go to the first, previous, next, last section, table of contents.
- ediff(poly[,varn]*)
- 
- ediff(poly,varlist)
- 
:: poly を varn あるいは varlist の中の変数で順次オイラー微分する.
- return
- 
多項式
- poly
- 
多項式
- varn
- 
不定元
- varlist
- 
不定元のリスト
- 
左側の不定元より, 順にオイラー微分していく. つまり, ediff(poly,x,y) は, 
ediff(ediff(poly,x),y) と同じである. 
[0] ediff((x+2*y)^2,x);  
2*x^2+4*y*x
[1] ediff((x+2*y)^2,x,y);
4*y*x
Go to the first, previous, next, last section, table of contents.