printPolynomial: Print polynomial given it's degrees and coefficients
Description
This function prints polynomial given it's degrees and coefficients.
Usage
printPolynomial(pol_degrees, pol_coefficients)
Arguments
pol_degrees
non-negative integer vector of polynomial degrees.
pol_coefficients
numeric vector of polynomial coefficients.
Value
This function returns the string which contains polynomial symbolic representation.
Details
Function automatically removes polynomial elements which coefficient are zero
and variables which power is zero. Output may contain long coefficients representation as they
are not rounded.