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


dp_order

dp_order(f | v=vv, order=oo)
:: dp_order は与えられた weight に対する次数の最大値を戻す.
return
数か数のリスト
f
分散表現多項式か分散表現多項式のリスト.
vv
リスト (変数のリスト)
oo
リスト (順序をあらわすリスト)
[1220] F=<<2,0,0>>+<<1,1,0>>+<<0,0,1>>;
(1)*<<2,0,0>>+(1)*<<1,1,0>>+(1)*<<0,0,1>>
[1222] dp_order(F | order=[[1,1,1]]);
[ 1 1 1 ]
[ R R R ]
2
[1223] dp_order(F | v=[x,y,z], order=[[x,1]]);
[ 1 0 0 ]
[ R R R ]
参照
section dp_gr_main, section dp_weyl_gr_main, section dp_initial_term, @xref{dp_hm}

ChangeLog


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