slice plot gives black surfaces

6 visualizaciones (últimos 30 días)
adi
adi el 16 de Dic. de 2019
Respondida: adi el 16 de Dic. de 2019
hey,
im having trouble with the slice plots.
i have a 3D matrix of electric field which i want to plot in the x-y plans along the z axis. (the third dimension of the matrix is the field in different Z axis values)
x,y,z are with dimensions of 1X201, Eg are with dimensions of 201X201X201
This is my code:
figure
xslice = [];
yslice = [];
zslice = [z(1),z(50),z(70),z(201)];
slice(z,y,x,abs(Eg(:,:,:)),zslice,yslice,xslice)
colorbar
the result i get is black surfaces, (i need to see the field distribution in x-y plane in each surface).
what can be the problem? how can i fix this?
This is the result:
Capture.PNG
thanks
  2 comentarios
darova
darova el 16 de Dic. de 2019
Can you attach the data?
adi
adi el 16 de Dic. de 2019
hey,
attached here is the whole m. file
thanks

Iniciar sesión para comentar.

Respuesta aceptada

darova
darova el 16 de Dic. de 2019
Planes are not black. THe mesh is just too fine
Add to your code
h = slice(z,y,x,abs(Eg(:,:,:)),zslice,yslice,xslice);
set(h,'EdgeColor','none');
img1.png

Más respuestas (1)

adi
adi el 16 de Dic. de 2019
Thank you very much for your answer!!
it was really helpful!

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by