Scilab 5.3.3
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
derivat
rational matrix derivative
Calling Sequence
pd=derivat(p)
Arguments
- p
polynomial or rational matrix
Description
computes the derivative of the polynomial or rational function matrix w.r.t the dummy variable.
Examples
s=poly(0,'s'); derivat(1/s) // -1/s^2;
<< denom | Polynomials | determ >> |