How do i plot this rect function and unit step function into matlab?

4 ビュー (過去 30 日間)
John Marl
John Marl 2018 年 11 月 2 日
回答済み: Tilkesh 2022 年 3 月 28 日

回答 (2 件)

madhan ravi
madhan ravi 2018 年 11 月 2 日
See rectangularpulse and piecewise are sufficient enough to finish your homework.
Remark: use symbolic variables using symbolic toolbox
  1 件のコメント
madhan ravi
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
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

カテゴリ

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