How to Plot and graph
3 ビュー (過去 30 日間)
古いコメントを表示
How would the corresponding code that needs to be produces to replicate the plot and graph image provided below in matlab?

0 件のコメント
採用された回答
Chad Greene
2017 年 2 月 27 日
You'll have to create data arrays containing theta and V values. To get you started,
theta = [0 20 45];
V = [12.7 15 6.4];
plot(theta,V)
2 件のコメント
Jonathan Engwall
2021 年 6 月 7 日
Sure enough.
You see what you have done here is not actually answer the question at all. True you graph a part of the function but you don't give an answer. I am here looking for help with MATLAB, not a fight.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!