times


description:
h=times(f, g) is called for the syntax 'f .* g' and means symbolic element-by-element multiplication.

arguments:
f and g are NCpolys representing polynomials or matrix of NCpolys with matching dimensions

output:
matrix of NCpolys

possible usage:

f .* g, times(f, g)

example:
>> f=[2*x*y,x;x+y,y];g=[x*y+x,y;y^2,x-y];
ans = 2*x*y*x+2*x*y*x*y       x*y
              x*y^2+y^3   y*x-y^2