Borrar filtros
Borrar filtros

Mesh plot, not able to match size of Z and X

1 visualización (últimos 30 días)
ZAHID MALIK
ZAHID MALIK el 15 de Abr. de 2023
Comentada: VBBV el 16 de Abr. de 2023
t=0.2;
p=1;
for kx = -3:.1:3
q=1;
for ky = -3:.1:3
energy_ary(p,q)= -2*t*(cos(kx)+cos(ky));
y_ary(p,q)= ky;
q=q+1;
end
x_ary(p)=kx;
p=p+1;
end
x = x_ary ;
y = y_ary ;
[XX,YY] = meshgrid(x,y);
ZZ = energy_ary' ;
contourf(XX,YY,ZZ) ;

Respuestas (1)

VBBV
VBBV el 15 de Abr. de 2023
Editada: VBBV el 15 de Abr. de 2023
t=0.2;
p=1;
for kx = -3:.1:3
q=1;
for ky = -3:.1:3
energy_ary(p,q)= -2*t*(cos(kx)+cos(ky));
y_ary(q)= ky;
q=q+1;
end
x_ary(p)=kx;
p=p+1;
end
x = x_ary ;
y = y_ary ;
[XX,YY] = meshgrid(x,y);
ZZ = energy_ary' ;
contourf(XX,YY,ZZ) ;
  2 comentarios
ZAHID MALIK
ZAHID MALIK el 16 de Abr. de 2023
Thank you so much. I got it now
VBBV
VBBV el 16 de Abr. de 2023
If that solved your problem, please accept the answer.

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by