Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Português - 日本語
Справка Scilab >> Polynomials > numer

numer

numerator

Syntax

num=numer(R)

Arguments

R

rational or polynomial or constant matrix.

num

polynomial matrix

Description

Utility function. num=numer(R) returns the numerator num of a rational function matrix R (R may be also a constant or polynomial matrix). numer(R) is equivalent to R(2), R('num') or R.num

Examples

h=(1+2*%s)/poly(1:4,'s','c');
denom(h)
numer(h)

s=poly(0,"s");
p=1+s+2*s^2;
denom(p) // Should return 1
numer(p)

See Also

Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:48:31 CEST 2016