Slice in 2D Coordinates
Mostra commenti meno recenti
I need to draw data like in slice, but only have 2 axes. This picture looks like what i can do now, but i need only colored grid without showing 3'd axis.
This is my code now: (V is a 3D matrix sized (x,y,z)
x_3 = 0:1:15;
y_3 = 0:1:14;
z_3 = 0:1:20;
x = 0;
figure;
s = slice(y_3, x_3, z_3, V, x, [], []);
set(s, 'EdgeColor','none');
1 Commento
Kathy Primakova
il 14 Mag 2022
Risposta accettata
Più risposte (1)
Torsten
il 1 Mag 2022
Maybe
ax1.ZAxis.Visible = 'off'; % remove z-axis
1 Commento
Kathy Primakova
il 2 Mag 2022
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!