フィルターのクリア

I wonder how to plot complex function

1 回表示 (過去 30 日間)
Jae Yoon Kim
Jae Yoon Kim 2018 年 9 月 24 日
編集済み: Jae Yoon Kim 2018 年 10 月 5 日
I want to know how to find and sketch the image of complex functions.

回答 (1 件)

Zenin Easa Panthakkalakath
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
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);

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by