Please, how to plot for this code?
1 回表示 (過去 30 日間)
古いコメントを表示
k = -2:0.1:2;
g = ((2*cos(2*k))-2)/(1i*k);
plot(k,g)
0 件のコメント
採用された回答
KSSV
2021 年 1 月 25 日
Read about element by element operations.
k = -2:0.1:2;
g = ((2*cos(2*k))-2)./(1i*k); % use ./
plot(k,abs(g))
hold on
plot(k,real(g))
plot(k,imag(g))
legend('abs','real','imaginary')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!