フィルターのクリア

I have some question in MATLAB homework

1 回表示 (過去 30 日間)
Mutlu Eren
Mutlu Eren 2018 年 5 月 2 日
コメント済み: Rena Berman 2018 年 5 月 15 日
I have some question in my MATLAB homework Please help me to solve them.
  4 件のコメント
Guillaume
Guillaume 2018 年 5 月 2 日
編集済み: Walter Roberson 2018 年 5 月 2 日
So, not only did Mutlu not do his own howework, but once someone had done his homework for him he then closes the question and deletes the question body so that it is then useless for everybody else.
Answers is there to benefit everybody. It is not a help me cheat on my homework service.
Rena Berman
Rena Berman 2018 年 5 月 15 日
(Answers Dev) Restored edit

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

回答 (2 件)

Yuvaraj Venkataswamy
Yuvaraj Venkataswamy 2018 年 5 月 2 日
編集済み: Walter Roberson 2018 年 5 月 2 日
Please check this.
%%%%%%9.
t=-10:1:10;
x1=exp(-(t));
figure;
plot(t,x1,'r-');
hold on
x2=exp(-(t-2));
plot(t,x2,'g-');
hold on
x3=exp(-(t+2));
plot(t,x3,'b-');
xlim([-10 10])
%%%%%%%10.
t=-10:1:10;
x1=exp(-(t));
figure;
plot(t,x1,'r-');
hold on
x2=exp(-(2*t));
plot(t,x2,'g-');
hold on
x3=exp(-(0.5*t));
plot(t,x3,'b-');
xlim([-10 10]);
%%%%%%%%11.
t=-10:1:10;
x1=t.^3;
figure;
plot(t,x1,'r-');
hold on
x2=(-t).^-3;
plot(t,x2,'g-');
xlim([-10 10])
t=-10:1:10;
x1=exp(-0.2*t).*sin(t);
figure;
plot(t,x1,'r-');
hold on
x2=exp(-0.2*(-t)).*sin(-t);
plot(t,x2,'g-');
xlim([-10 10])
  2 件のコメント
Walter Roberson
Walter Roberson 2018 年 5 月 2 日
I would suggest using linspace(-10,10) instead of -10:1:10 as the : version is only 21 points.
Yuvaraj Venkataswamy
Yuvaraj Venkataswamy 2018 年 5 月 2 日
編集済み: Yuvaraj Venkataswamy 2018 年 5 月 2 日
Yes. In this, I have considered step increment is 1. So, I got 21 points.

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


Walter Roberson
Walter Roberson 2018 年 5 月 2 日

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by