How visualize data in matlab
2 次查看(过去 30 天)
显示 更早的评论
I am trying to visualize data in matlab with this file (I have attach above).
How to visualize the data with the x-axis is the "date2", dan the y-axis is "mean_METs"?
0 个评论
采纳的回答
Star Strider
2018-7-16
编辑:Star Strider
2018-7-16
With your data, use the structure field reference with your ‘ee_moderate’ table:
d = load('ee_moderate.mat');
ee_moderate = d.ee_moderate;
figure
plot(ee_moderate.date2, ee_moderate.mean_METs)
xlabel('date2')
ylabel('mean\_METs')
grid
4 个评论
更多回答(1 个)
KARSH THARYANI
2018-7-16
Hi,
In short, you need to load your .mat file and the variables will show up in your workspace, if loaded successfully.
Then, you can plot them.
So, for instance if you have a column vector in X and the values corresponding to it in Y, you can do
plot(X, Y);
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!