how can i type this equation in matlab x(t)= cos(πt)[u(t) − u(t − 1)] and h(t) = 1.5[u(t) − u(t − 1.5)] ???

1 件のコメント

darova
darova 2020 年 4 月 6 日
What is u(t)?

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

 採用された回答

Birdman
Birdman 2020 年 4 月 6 日

0 投票

syms u(t) x(t) h(t)
u(t)=piecewise(t>=0,1,0);
x(t)=cos(pi*t)*(u(t)-u(t-1));
h(t)=1.5*(u(t)-u(t-1.5));
%%plot
t=0:0.001:5;
plot(t,x(t),t,h(t));legend('x(t)','h(t)')

1 件のコメント

Shouq A
Shouq A 2020 年 4 月 6 日
thank you so much

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

タグが未入力です。

質問済み:

2020 年 4 月 6 日

コメント済み:

2020 年 4 月 6 日

Community Treasure Hunt

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

Start Hunting!

Translated by