I wonder how to plot complex function
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to know how to find and sketch the image of complex functions.
댓글 수: 0
답변 (1개)
Zenin Easa Panthakkalakath
2018년 9월 27일
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
Zenin Easa Panthakkalakath
2018년 9월 28일
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);
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!