BMV

description:

f=BMV(m,k) constructs the (m,k) BMV polynomial with x and y as arguments = the sum of all words of total degree m and degree k in y

arguments:

m and k are non-negative integers

 

output:

f is the corresponding BMV polynomial

possible usage:

BMV(m,k)

example:

>> f=BMV(5,4)

f=x*y^4+y*x*y^3+y^2*x*y^2+y^3*x*y+y^4*x