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!