Assistance with contour plot?
Mostrar comentarios más antiguos

I'm trying to get the above contour, but I can only get the contour below.

Do you have any suggestions? The code I am using is :
f = @(x,y) x*y;
fcontour(f)
2 comentarios
Star Strider
el 25 de Sept. de 2019
Except for the labels, they appear to be the same contour plot.
What differences between them do you see?
Respuestas (1)
Ankit
el 25 de Sept. de 2019
0 votos
Hello Claire,
Just have a look here:
Regards
Ankit
2 comentarios
Claire Elizabeth Santos
el 25 de Sept. de 2019
Ankit
el 26 de Sept. de 2019
Then I think your question is not clear to me. From the above two plots it seems like you need to have labels in your plot. What exactly is your requirement?
f = @(x,y) x*y;
hfc = fcontour(f);
contour(hfc.XData, hfc.YData, hfc.ZData, 'ShowText','on')
fcontour(f)

Categorías
Más información sobre Contour Plots en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!