|
Contents | Previous | Next | Subchapters |
| Syntax |
polder(p) |
| See Also | polval , pol2asc |
v[x] and its derivative
dv[x] are
1 2 n-1
v[x] = v + v x + v x + ... + v x
1 2 3 n
1 n-2
dv[x] = v + 2 v x + ... + (n-1) v x
2 3 n
The vector p must have at least one element.
The return value has the same type as p.
If p had one element, the return value is the scalar zero,
otherwise the return value has one less element than the
vector p.
p = {1, 1, 1, 1}
polder(p)
O-Matrix will reply
{
1
2
3
}