| Library: | math |
| See also: | cplot |
| Macro: | cplotfunc | |
| Description: | Plots a function of x and y-space |
| Usage: | cplotfunc (y) | |
| Input: | ||
| y | n x 2 complex matrix | |
library("math")
g = grid (-2, 0.2, 41)
x = complex (g.*matrix(rows(g),rows(g)), g'.*matrix(rows(g),rows(g)))
y = cmul(x,x)
cplotfunc(y)
plot of y
| Library: | math |
| See also: | cplot |