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


odiff_act

odiff_act(L,F,V)
:: 微分作用素 L を有理式 F に作用させる. V は変数リスト.
return
有理式
L
リスト or 多項式
F
有理式
V
リスト
[302] odiff_act([[1,[2]]],x^3+x^2+x+1,[x]);
6*x+2

[303] odiff_act([[1,[1,0]],[1,[0,1]]],x^2+y^2,[x,y]);
2*x+2*y

[349] odiff_act(x*dx+y*dy, x^2+x*y+y^2, [x,y]);
2*x^2+2*y*x+2*y^2


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