Plotting 3D- matrix values against other 3D-matrix values
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi! I have two 3D matrices with the same size, x and y. I want to plot the values of y against the values of x. How can I do it?
댓글 수: 0
채택된 답변
B Mohandes
2016년 11월 10일
you don't care about the fact that the matrices are 3D or not. you might as well convert the matrices to a vector, as long as you're plotting each point in x against each point in y. hence: plot(x(:),y(:)); %should do the trick
------------------------- prayers for syria
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!