simp - Rational simplification (original) (raw)
Scilab 5.3.3
- Scilab help
- Polynomials
- bezout
- clean
- cmndred
- coeff
- coffg
- colcompr
- degree
- denom
- derivat
- determ
- detr
- diophant
- factors
- gcd
- hermit
- horner
- hrmt
- htrianr
- invr
- lcm
- lcmdiag
- ldiv
- numer
- pdiv
- pol2des
- pol2str
- polfact
- residu
- roots
- rowcompr
- sfact
- simp
- simp_mode
- sylm
- systmat
Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function
Scilab help >> Polynomials > simp
Calling Sequence
[N1,D1]=simp(N,D) H1=simp(H)
Arguments
N,D
real polynomials or real matrix polynomials
H
rational matrix (i.e matrix with entries n/d ,n and d real polynomials)
Description
[n1,d1]=simp(n,d) calculates two polynomials n1 and d1 such that n1/d1 = n/d.
If N and D are polynomial matrices the calculation is performed element-wise.
H1=simp(H) is also valid (each entry of H is simplified in H1).
Caution:
-no threshold is given i.e. simp cannot forces a simplification.
-For linear dynamic systems which include integrator(s) simplification changes the static gain. (H(0) for continuous systems or H(1) for discrete systems)
-for complex data, simp returns its input(s).
-rational simplification is called after nearly each operations on rationals. It is possible to toggle simplification on or off usingsimp_mode function.
Examples
See Also
- roots — roots of polynomials
- trfmod — poles and zeros display
- poly — polynomial definition
- clean — cleans matrices (round to zero small entries)
- simp_mode — toggle rational simplification