How to plot rows of matrix as pont in number of column dimensions
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello!
I have a matrix U with dimensions n by k.
is there a way to plot the n rows as n point in k dimentions ?
or away to plot all 2D combinations of the k dimensions ?
댓글 수: 0
답변 (1개)
Sulaymon Eshkabilov
2019년 5월 7일
plot(1:n, U);
% or a bit fancier but slower way
for ii = 1:n
plot(1:n, U(ii, 1:k)), hold all
end
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!