Programmer Guide/Command Reference/EVAL/sinc: Difference between revisions
From STX Wiki
< Programmer Guide | Command Reference | EVAL
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
;Usage: '''<code>sinc(<var>x</var>)</code>''' | ;Usage: '''<code>sinc(<var>x</var>)</code>''' | ||
:;<var>x</var>a scalar, vector or matrix | :;<var>x</var>:a scalar, vector or matrix | ||
;Result: The result ''r'' of this function has always the same type as the argument ''x''. | ;Result: The result ''r'' of this function has always the same type as the argument ''x''. | ||
::''x''<sub>i,j</sub> = 0: ''r''<sub>i,j</sub> = 1 | ::''x''<sub>i,j</sub> = 0: ''r''<sub>i,j</sub> = 1 |
Revision as of 12:54, 4 April 2011
Compute the function sin(x) / x
.
- Usage
sinc(x)
- x
- a scalar, vector or matrix
- Result
- The result r of this function has always the same type as the argument x.
- xi,j = 0: ri,j = 1
- otherwise: ri,j = sin(xi,j) / xi,j
- See also
- sin