why can't i plot this function? :(

1 vue (au cours des 30 derniers jours)
Hassan Dehghani
Hassan Dehghani le 29 Mai 2014
Commenté : Hassan Dehghani le 29 Mai 2014
I'm trying to plot this function. It gives me the following error.
Warning: Matrix is singular to working precision
I'm using Matlab 2011a.
G=@(x1,x2)(-(1+cos(12*sqrt(x1^2+x2^2)))/(0.5*(x1^2+x2^2)+2));
x=-5:.1:5; y=-5:.1:5; [x1 x2]=meshgrid(x,y);
mesh(x2,x1,G(x1,x2))

Réponse acceptée

David Sanchez
David Sanchez le 29 Mai 2014
Try it this way:
x = -5:.1:5;
y = -5:.1:5;
[x1 x2] = meshgrid(x,y);
G2 = -(1+cos(12.*sqrt(x1.^2+x2.^2)))./(0.5.*(x1.^2+x2.^2)+2);
mesh(x2,x1,G2)
  1 commentaire
Hassan Dehghani
Hassan Dehghani le 29 Mai 2014
tnx man, saved my day :)

Connectez-vous pour commenter.

Plus de réponses (0)

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by