Question : matlab 3D imagesc
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to apply the same effect as imagesc to 3D matrix.
Here's my code
% some 3d matrix : temp = [100, 20, 15]
figure(1)
[x y z] = ind2sub(size(temp), find(temp));
plot3(z,y,x, 'r.')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/420928/image.png)
The code result is as above.
However, I want to show the relative difference according to the value of the red dots above. What should I do?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Parallel Server finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!