HowTo make slice grid transparent?
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kathy Primakova
am 21 Apr. 2022
Kommentiert: Voss
am 22 Apr. 2022
I need to draw 3 planes fnd I use slice function, but also I need to make grid transparent. Please, help me to do it!
My code:
V = matrix(); % matrix() is a function, V is a 3D data array
x_3 = -15:0.1:14.9;
y_3 = -14:0.1:13.9;
z_3 = -2:0.1:38;
% x, y and z are integer
h(1) = slice(y_3, x_3, z_3, V, x, y, z);
Thank You!
0 Kommentare
Akzeptierte Antwort
Voss
am 21 Apr. 2022
x_3 = -15:0.1:14.9;
y_3 = -14:0.1:13.9;
z_3 = -2:0.1:38;
V = rand([numel(x_3) numel(y_3) numel(z_3)]);
s = slice(y_3, x_3, z_3, V, 1,1,1);
set(s,'EdgeColor','none');
2 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
