How to plot complex function of two variables?
13 ビュー (過去 30 日間)
古いコメントを表示
How to plot complex function,
in MATLAB like surface plot.
x and y are variable. Should I separately plot for positive sign and negative sign.
0 件のコメント
採用された回答
KSSV
2021 年 6 月 8 日
x = linspace(0,1) ;
y = linspace(0,1) ;
[X,Y] = meshgrid(x,y) ;
Z = 1i/2*sqrt(X./Y) ;
surf(X,Y,abs(Z))
hold on
surf(X,Y,-abs(Z))
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
