[back] [prev] [next] [index] [root]

 


IsPoly

Returns true iff the argument is a polynomial.

Syntax:

b := IsPoly(f);

boolean
  b  
  f  

Description:

no detailed description available yet


Example:


kash> f := Poly(Zx, [1, 2, 1, 2]);
x^3 + 2*x^2 + x + 2
kash> IsPoly(f);
true
kash> IsPoly(3);
> false


<- back[back] [prev] [next] [index] [root]