How to make Surf Plot
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
balaji
le 15 Mar 2020
Réponse apportée : Walter Roberson
le 15 Mar 2020
I got a following answer for two variables problem having x1 and x2 and function evaluation for the population size of 10. How to do surf plot for the same
POP =
1.0e-06 *
0.0010 0.8456
FEVAL =
1.0e-11 *
0.1430
1 commentaire
Walter Roberson
le 15 Mar 2020
That looks to me like the result of an optimization function in two variables.
Réponse acceptée
Walter Roberson
le 15 Mar 2020
xmin = 0; xmax = 1e-8; %adjust as appropriate
ymin = 0; ymax = 2e-11; %adjust as appropriate
fsurf(@NameOfFunction, [xmin, xmax, ymin, ymax])
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!