I wonder how to plot complex function

3 views (last 30 days)
Jae Yoon Kim
Jae Yoon Kim on 24 Sep 2018
Edited: Jae Yoon Kim on 5 Oct 2018
I want to know how to find and sketch the image of complex functions.

Answers (1)

Zenin Easa Panthakkalakath
Have a look at the following code:
f = @(z) 2/(z-1); %defining the function f
z = linspace(-10,10,1000); %1000 evenly spaced points between -10 and 10
z = z.*(z-2<1); % z-2<1
plot(z,arrayfun(f,z));
  1 Comment
Zenin Easa Panthakkalakath
Try something like this:
f = @(z) 2/(z-1); %defining the function f
z = linspace(1-i,3+i,10);
z = z.*(abs(z-2)<1) % z-2<1
f_val = arrayfun(f,z);
plot(f_val);

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!