How to plot complex functions in Matlab? For example:
Y[e^jx] = 1 / (1 - cosx + j4)
I tried some code, but I think the right way is by plotting real and imaginary part separately.
|
|
|
|||
|
|
but remember there is a domain associated with a complex function in which it is valid, in your case: cos(x)-4j < 1 |
|||
|
|
|
By default,
If you need them both on y-axis, use:
|
|||
|
|
|
You can use one of the following:
|
||||
|
|
|
There are some MATLAB functions that are specific to plotting complex maps:
See also Functions of Complex Variables in MATLAB's documentation. |
|||
|
|