plot each line in a matrix
128 views (last 30 days)
Show older comments
I am trying to plot each line in sw matrix. so there will be 16 line plot in the same graph.
the rows from each matrix needs to be the y axis
x axis is time. (t = linspace (0:0.4:4))
sw is a 16x10 double matrix
plot (t,sw)
0 Comments
Answers (1)
dpb
on 1 Mar 2019
plot (t,sw.')
Just transpose the array to use plot()'s builtin facility to plot each column as a variable.
It's the power of the matrix-orientation of Matlab syntax; just have to think about how to apply it to your given problem.
Or, of course, rethink your data orientation to use the Matlab convention of columns being the variables and rows the observations and not have to do anything different.
2 Comments
dpb
on 1 Mar 2019
"Show your work!"
If the problem is as you described, it will "work".
t=linspace(0,4,10).'; % your t in correct syntax
x=randn(16,10); % make a data array of your given size
y=10:10:160; % we'll make so can tell "who's who in the zoo!"
z=bsxfun(@plus,x,y.'); % by adding 10 to each of the row means
figure
plot(t,z.') % and plot the transposed array, z
which yielded the following figure:
where you can see the 16 lines and each has a mean offset by 10.
See Also
Categories
Find more on Bar Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!