フィルターのクリア

Why is my plot not showing anything?

1 回表示 (過去 30 日間)
Dustin Rigdon
Dustin Rigdon 2018 年 2 月 1 日
コメント済み: Image Analyst 2018 年 2 月 1 日
x = -3:0.01:5;
y = ((x+5).^2)/(4+3*x.^2);
plot(x,y)

採用された回答

James Tursa
James Tursa 2018 年 2 月 1 日
Use element-wise division:
y = ((x+5).^2)./(4+3*x.^2);
  2 件のコメント
Dustin Rigdon
Dustin Rigdon 2018 年 2 月 1 日
Thanks!
Image Analyst
Image Analyst 2018 年 2 月 1 日
Dustin, you can also thank him by Accepting his answer, and voting for it, to give him reputation points.

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by