Σ | Summation. Finds the sum of expression with respect to |
| variable from initialvalue to finalvalue. |
| Σ(variable=initialvalue, finalvalue, expression) |
| Example |
| Σ(C=1,5,C2) returns 55. |
Matrix functions
| These functions are for matrix data stored in matrix |
| variables. See “Matrix functions and commands” on |
| |
Polynomial functions | |
| Polynomials are products of constants (coefficients) and |
| variables raised to powers (terms). |
POLYCOEF | Polynomial coefficients. Returns the coefficients of the |
| polynomial with the specified roots. |
| POLYCOEF ([roots]) |
| Example |
| To find the polynomial with roots 2, |
| |
| |
POLYEVAL | Polynomial evaluation. Evaluates a polynomial with the |
| specified coefficients for the value of x. |
| POLYEVAL([coefficients], value) |
| Example |
| For |
| |
| 3432. |
POLYFORM | Polynomial form. Creates a polynomial in variable1 from |
expression.
POLYFORM(expression, variable1)
Example
POLYFORM((X+1)^2+1,X) returns X^2+2*X+2.
Using mathematical functions |