How to plot in 4_D?

조회 수: 2 (최근 30일)
Preston
Preston 2013년 4월 4일
I have a matrix: A(16,24,336). How can I plot this A matrix in 4D? The A matrix is based off the following matrices: D(16,1), T(1,24), and L(336,1). How can I plot D, T, L with the color representing the A values? Or just how could I plot this data in general? I am very new to Matlab and would appreciate as detailed explanation as possible.

답변 (2개)

bym
bym 2013년 4월 4일
look at the documentation for
slice
by typing in the command window
doc slice
also, look at the documentation for
meshgrid

Brady Flinchum
Brady Flinchum 2013년 5월 21일
I think that I have an answer. I have achieved this with the data in a slightly different format
Essentially I had a file that gave me
x0, y0, z0, c0
x0, y1, z0, c1
x0, y2, z0, c2
. . .
. . .
. . .
x1, y0, z0, c_n
x1, y1, z0, c_n+1
. . .
To plot these I use the reshape command:
xq = reshape(x,137,19)
where the 137 is total number between repeats in the x and y, and 19 is the total number of time the pattern repeats, AKA the depth slices.
The reshape command leaves me with 4 137x19 matricies that I called xq, yq, zq, cq. You can then use the surf command to plot your data:
surf(xq,yq,zq,cq)
I hope this helps! I am still trying to figure out how to interpolate my values to a finer mesh.

카테고리

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