Plotting a 3D matrix over time

조회 수: 5 (최근 30일)
Leslie Chase
Leslie Chase 2018년 12월 3일
댓글: nivedha baskar 2019년 7월 19일
I am calculating 3x3 matrices over time. For every new t, there is a new matrix. I then calculate the euclidean distance between the new matrix and the original matrix each time. I want to represent the distance between the matrices over time, but I can't figure out how to graph a 3x3 matrix over time since that would be 4 dimensions. I want to find a way to just make this a 2d graph, distance vs time, but the distance is obviously a 3x3 value. Any ideas for how I can represent this data on a graph?
  댓글 수: 1
nivedha baskar
nivedha baskar 2019년 7월 19일
could you please share the code

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2018년 12월 3일
편집: Matt J 2018년 12월 3일
If your final data set is a 3x3xN array, D, you can reshape and plot it as follows
plot( reshape(D,9,N).' )
This will display each time path D(i,j,:), i=1,2,3, j=1,2,3 as its own curve.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by