how to plot this function?
2 ビュー (過去 30 日間)
古いコメントを表示

0 件のコメント
採用された回答
Image Analyst
2022 年 10 月 5 日
編集済み: Image Analyst
2022 年 10 月 5 日
Here is one way:
x = linspace(-pi, pi, 1000);
f = zeros(1, length(x));
f(abs(x) <= pi/2) = 1;
plot(x, f, 'b-', 'LineWidth', 2)
ylabel('f');
xlabel('x');
grid on;
and this: MATLAB Academy - Free 2 hour training
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Simulation, Tuning, and Visualization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!