NPRIMITIVE INDEX

NPRIMITIVE _ _ _ _ _ _ _ _ _ _ _ _ operator

syntax:

nprimitive(<expression>) or nprimitive <simple\_expression>

This operator returns the numerically-primitive part of any scalar expression. In other words, any overall integer factors in the expression are removed.

examples:


nprimitive((2x+2y)^2); 

   2            2
  X  + 2*X*Y + Y  


nprimitive(3*a*b*c); 

  3*A*B*C