The constant of a polynom or a polynomial matrix
Returns the constant of a polynom class object or
the constant matrix of a polyMatrix class object.
const(p)
## S3 method for class 'polynomial'
const(p)
## S3 method for class 'polyMatrix'
const(p)p |
a |
A numeric object, containing the constant of the given
polynom, or of a matrix class object which contains the
constant matrix of the given polynomial matrix.
p<-polynom::polynomial(0:12) const(p) pa<-polyMgen.a(2,2) pa const(pa) pb<-polyMgen.b(2,2) pb const(pb) pc<-polyMgen.c(2,2) pc const(pc) pd<-polyMgen.d(2,2) pd const(pd) # clean up # rm(p, pa, pb, pc, pd)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.