How to produce a plot on the x and y axes

1 回表示 (過去 30 日間)
Emilia
Emilia 2021 年 6 月 25 日
回答済み: KSSV 2021 年 6 月 25 日
Hello friends,
I want to produce a plot, there is a problem in line 5.
Thanks for the helpers
clc;
w=8500;
teta = 39.29:51.57;
F=-w/(2*sin(teta));
plot(teta,F)
grid

採用された回答

KSSV
KSSV 2021 年 6 月 25 日
w=8500;
teta = 39.29:51.57;
F=-w./(2*sin(teta)); % <-- element by element operation
plot(teta,F)
grid

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by