Please How I can use meshgrid with x and y are the elements of the matrix A and plot a figure like in the picture
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Abdelkader Hd
el 9 de Ag. de 2022
Comentada: Abdelkader Hd
el 9 de Ag. de 2022
x = linspace(0,3);
y = linspace(-2*pi,2*pi);
[X,Y] = meshgrid(x,y);
A=[x,2;0,y];
Z = exp(det(A)) + cos(Y);
contourf(X,Y,Z)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1092630/image.jpeg)
0 comentarios
Respuesta aceptada
Walter Roberson
el 9 de Ag. de 2022
Editada: Walter Roberson
el 9 de Ag. de 2022
This does not look like a contour plot at first, but notice the upper right corner.
syms P Q
D = det([P, 2; 0, Q]);
x = linspace(0,3);
y = linspace(-2*pi,2*pi);
[X,Y] = meshgrid(x,y);
A = double(subs(D, {P,Q}, {X, Y}));
Z = exp(A) + cos(Y);
contourf(X, Y, Z)
Más respuestas (0)
Ver también
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!