how to plot the graph for the following data with respect to x axis and y axis.
3 ビュー (過去 30 日間)
古いコメントを表示
X axis data (2,4,6,8,10) y axis data(1.35,4.16,4.12,4.83,4.35)
could anyone help me to do this.
0 件のコメント
採用された回答
YT
2018 年 3 月 5 日
You can plot it easily like so:
x_data = [2,4,6,8,10];
y_data = [1.35,4.16,4.12,4.83,4.35];
plot(x_data,y_data);
You can check the options for plot by typing help plot in the command window
2 件のコメント
Rik
2018 年 3 月 5 日
To clarify: the x-tick have no real connection with the data you plotted. If you had plotted x_data = [2.5,4.5,6.5,8.5,10.5];, you would still see the same integers as the x-tick labels.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!