Plot 2 Vectors as a X and Y graph

4 ビュー (過去 30 日間)
Marcelo Boldt
Marcelo Boldt 2020 年 10 月 9 日
コメント済み: Ameer Hamza 2020 年 10 月 9 日
Hello all,
I have the following two vectors (Bending Moment and Meridian s) both 86x1 dimension and I want to plot Bending Moment as a function of Meridian s.
I did the following thing but I am not getting good results:
figure(3)
plot (Meridian_s(1,:),M_plot(1,:),'-xm')
ylabel('M [Nmm/mm]')
xlabel ('Meridian Coordinate S [mm]')
title('Bending Flux ')
How would you do it?
Thanks!

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 9 日
First, there are mistakes in your code considering the variables you shared
figure()
ax = axes();
plot(Meridian_s, M,'-xm')
ylabel('M [Nmm/mm]')
xlabel ('Meridian Coordinate S [mm]')
title('Bending Flux ')
The output looks like this
What do you expect the output to look liks?
  2 件のコメント
Marcelo Boldt
Marcelo Boldt 2020 年 10 月 9 日
yes, I found my mistake! Thanks for your quick answer
Ameer Hamza
Ameer Hamza 2020 年 10 月 9 日
I am glad to be of help!

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by