finding out the value of a point in a graph
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to find out the value of the peak point in a graph using command or coding? do the command "maxValue" will help?
0 commentaires
Réponse acceptée
Image Analyst
le 25 Jan 2012
Well you plotted it so you must have the data. maxValue is not a command but max() is. You can try this:
maxValue = max(data(:));
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D 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!