How visualize data in matlab
Show older comments
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"?
Accepted Answer
More Answers (1)
KARSH THARYANI
on 16 Jul 2018
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);
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!