Programmer Guide/Command Reference/EVAL/rpoly: Difference between revisions

From STX Wiki
Jump to navigationJump to search
m (1 revision: Initial import)
No edit summary
Line 1: Line 1:
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
=====rpoly=====
Evaluate polynom with real coefficients.
;Usage: <code>rpolyreg(<var>a</var>, <var>x</var>)</code>:
:;<var>a</var>: a vector containing the polynom coefficients
:;<var>x</var>: a scalar, vector or number
;Result: The result ''y'' has the same type as ''x''.
::<code>''y''[i,j] = ''a''[0] + ''a''[1]*''x''[i,j] + ''a''[2]*''x''[i,j]^2 + ... + ''a''[m]*''x''[i,j]^m</code>
::<code>with: m = polynom order = ncol(''a'')-1</code>
;See also: [[Programmer_Guide/Command_Reference/EVAL/rpolyreg|rpolyreg]], [[Programmer_Guide/Command_Reference/EVAL/interp|interp]]


Evaluate the polynomial <var>a</var> for all arguments.
[[Programmer_Guide/Command_Reference/EVAL#Functions|<function list>]]
 
=====Usage:=====
 
<code>rpoly(<var>a</var>, <var>x</var>)</code>
 
=====Parameters:=====
 
;<var>x</var>
 
:A number, vector or matrix.
 
=====Result:=====
 
<code>y[] = a[0] + a[1]*x[] + a[2]*x[]^2 ...</code>
 
=====Return Type:=====
 
The same as <var>x</var>.

Revision as of 09:51, 12 April 2011

Evaluate polynom with real coefficients.

Usage
rpolyreg(a, x):
a
a vector containing the polynom coefficients
x
a scalar, vector or number
Result
The result y has the same type as x.
y[i,j] = a[0] + a[1]*x[i,j] + a[2]*x[i,j]^2 + ... + a[m]*x[i,j]^m
with: m = polynom order = ncol(a)-1
See also
rpolyreg, interp

<function list>

Navigation menu

Personal tools