How to plot a graph?
1 次查看(过去 30 天)
显示 更早的评论
I have a matrix of 50x6 and range between 0 - 1.
Now I have to plot in a way such that X and Y axis range is 0 to 1 and graph should have 50 lines (row-wise data of the matrix).
can you enlightnen me in plotting this?
0 个评论
回答(2 个)
KSSV
2021-9-20
You can striaght away use plot on 50*6 matrix.
plot(A) ; % A is 50*6 matrix
legend
3 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!