How do i plot this rect function and unit step function into matlab?
4 ビュー (過去 30 日間)
古いコメントを表示
回答 (2 件)
madhan ravi
2018 年 11 月 2 日
1 件のコメント
madhan ravi
2018 年 11 月 2 日
If you still don’t figure it out , post the code which you tried here so that it can be corrected .
Tilkesh
2022 年 3 月 28 日
function y = rect(x, D)
% function y = rect(x, D)
if nargin == 1, D = 1;
x = abs(x);
y = double(x<D/2);
y(x == D/2) = 0.5;
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!