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


odiff_op_toasir

odiff_op_toasir(LL,V)
:: リスト形式の微分作用素リスト LLasir の多項式に変換します.
return
リスト
LL
リスト
V
リスト
[303] odiff_op_toasir([[[1/2*x,[1,0]],[1,[0,0]]],
                           [[1/3*y,[0,1]],[1/4,[0,0]]]],[x,y]);
[1/2*x*dx+1,1/3*y*dy+1/4]

[304] odiff_op_toasir([[[x,[1,0]],[y,[0,1]],[1,[0,0]]],
                           [[1,[2,0]],[1,[0,2]]]],[x,y]);
[x*dx+y*dy+1,dx^2+dy^2]


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