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


odiff_op_fromasir

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

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


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