Library: | math |
Quantlet: | cabs | |
Description: | Absolute value of a complex array |
Usage: | y = cabs (x) | |
Input: | ||
x | n x p x d1 x ... x dn complex array | |
Output: | ||
y | n x p x d1 x ... x dn array |
library("math") z = complex (1,1) cabs(z)
//Squareroot of 2 Contents of y [1,] 1.4142
Library: | math |