Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

5 Answers

x = linspace(-pi, pi, 1e3);
y = 1./(1 - cos(x) + i*4);

% Plot absolute value and phase
figure;
subplot(2,1,1); plot(x, abs(y));
subplot(2,1,2); plot(x, angle(y));

% Plot real and imaginary parts
figure;
subplot(2,1,1); plot(x, real(y));
subplot(2,1,2); plot(x, imag(y));
share|improve this answer
plot(re(Y),im(Y))

but remember there is a domain associated with a complex function in which it is valid, in your case: cos(x)-4j < 1

share|improve this answer

By default, plot(X) will plot real vs imaginary, so it's equal to plot(real(X), imag(X)) For example, try:

>> r = sort(rand(10, 1)) + 1i * rand(10, 1);
>> figure, plot(r)

If you need them both on y-axis, use:

plot([real(X), imag(X)])
share|improve this answer

You can use one of the following:

  • plot(real(Y))
  • plot(imag(Y))
  • plot(real(Y),imag(Y))
  • plot(abs(Y))
share|improve this answer

There are some MATLAB functions that are specific to plotting complex maps:

z = cplxgrid(60);
cplxmap(z, 1./(1 - cos(z) + 4*i));

See also Functions of Complex Variables in MATLAB's documentation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.