how can I plot this function?

5 ビュー (過去 30 日間)
Shouq A
Shouq A 2020 年 4 月 6 日
コメント済み: darova 2020 年 4 月 7 日
how can i plot this function in matlab x(t)= J0(πt)[u(t) − u(t − 1)] and h(t) = 1.5 cos(πt)[u(t) − u(t − 1.5)]?
  1 件のコメント
darova
darova 2020 年 4 月 6 日
Make an effort. It's your second time you want someone to do your homework

サインインしてコメントする。

採用された回答

shubhi dua
shubhi dua 2020 年 4 月 6 日
t=0:0.001:20
% as you decrease the step size the graph becomes more and more acurate.%
x= J0(pi*t)(heaviside(t)-heaviside(t-1))
plot(t,x)
y=1.5*cos(pi*t).*(heaviside(t)-heaviside(t-1.5))
plot(t,y)
  1 件のコメント
darova
darova 2020 年 4 月 7 日
Don't do someone's homework

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLighting, Transparency, and Shading についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by