finding out the value of a point in a graph
조회 수: 2 (최근 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!