why can't i draw diagram of function abs(sin3x/sin(x/2)) in matlab?

2 ビュー (過去 30 日間)
Le Dung
Le Dung 2017 年 4 月 13 日
コメント済み: Star Strider 2017 年 5 月 9 日
my code:
x=-pi:0.1:pi;
y=abs(sin(3*x)/sin(x/2));
plot(x,y);

採用された回答

Star Strider
Star Strider 2017 年 4 月 13 日
Because you are not using element-wise division (with the ‘dot’ operator, as ‘./’).
This works:
x=-pi:0.1:pi;
y=abs(sin(3*x)./sin(x/2));
plot(x,y);
See the documentation on Array vs. Matrix Operations for all the details.
  7 件のコメント
Le Dung
Le Dung 2017 年 5 月 9 日
Thank you so much
Star Strider
Star Strider 2017 年 5 月 9 日
My (our) pleasure.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by