question about sinc function ploting

1 回表示 (過去 30 日間)
ADNAN KIRAL
ADNAN KIRAL 2019 年 9 月 5 日
コメント済み: Star Strider 2019 年 9 月 5 日
hi
I want to move my "sinc" function from negative to positive side. The function is;
t=-40.955:0.005:40.960;
u=(200/pi)*(15*sinc(15*t)-3*sinc(3*t));
It needs to start from "0". would you please help me with that? how can i move my axis in "sinc" function
like this plot. Thanks in advance.
test.PNG

採用された回答

Star Strider
Star Strider 2019 年 9 月 5 日
To move it in the plot, simply add the appropriate value to the ‘t’ vector:
t=-40.955:0.005:40.960;
u=(200/pi)*(15*sinc(15*t)-3*sinc(3*t));
figure
plot(t-min(t), u)
grid
Experiment to get the result you want.
  2 件のコメント
ADNAN KIRAL
ADNAN KIRAL 2019 年 9 月 5 日
thanks.
Star Strider
Star Strider 2019 年 9 月 5 日
As always, my pleasure.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by