finding out the value of a point in a graph
3 ビュー (過去 30 日間)
古いコメントを表示
how to find out the value of the peak point in a graph using command or coding? do the command "maxValue" will help?
0 件のコメント
採用された回答
Image Analyst
2012 年 1 月 25 日
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(:));
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!