Create 4D surface plot from x, y, z and c column vectors
조회 수: 10 (최근 30일)
이전 댓글 표시
I have 4 columns in a table named A. The 3 columns x,y,z are the initial conditions and c is the result of a specific function I use c = f(x,y,z). I want to show the result c[i] for every case x[i],y[i],z[i] as a surface where the colour will stand for how high/low the value of c is.
I use the code below:
xx = A.x
yy = A.y
zz = A.z
cc = A.c
but the following error appears:
Z must be a matrix, not a scalar or vector.
Any ideas?
댓글 수: 0
채택된 답변
Walter Roberson
2017년 1월 26일
scatteredInterpolant or TriScatteredInterp. Then evaluate at a regular grid. Then you can isosurface() or slice()
댓글 수: 13
Walter Roberson
2022년 9월 12일
Note that the UserData part is only there for potential future code extension with customizing datatips; if you are not planning to customize the datatips then you can leave out the 'UserData' part.
Also, the code to get a color from the color map to pass to FaceColor, uses interpolation of the current level compared to the potential range of the levels. If your levels are dense or if you choose the levels non-linearly, then you could end up with two surfaces the same color. The code does not use "next color" each time -- does not use the standard color order
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!