How to make contour plot from this function in MATLAB R2013a?
Afficher commentaires plus anciens
f(x,y)= x^5 + x^4- 2x^2 y + y^2
Réponses (1)
KSSV
le 9 Avr 2018
f = @(x,y) x.^5 + x.^4- 2*x.^2.*y + y.^2 ;
N = 100 ;
x = linspace(0,1,N) ;
y = linspace(0,1,N) ;
[X,Y] = meshgrid(x,y) ;
Z = f(X,Y) ;
contour(X,Y,Z,100)
5 commentaires
Brigitte Trista Indah Yudhiana Sutrisno
le 9 Avr 2018
KSSV
le 9 Avr 2018
To get the function solved, you need to have x,y values. (0,1) is the range of x and y I gave. N = 100, it divides (0,1) interval into 100 points. Read about linspace.
Brigitte Trista Indah Yudhiana Sutrisno
le 9 Avr 2018
KSSV
le 9 Avr 2018
Where is the error? The given code works fine. Show us the code, if you have made any changes.
Brigitte Trista Indah Yudhiana Sutrisno
le 9 Avr 2018
Catégories
En savoir plus sur Contour Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!