how to show max min mean std in GUI
2 ビュー (過去 30 日間)
古いコメントを表示
how to create pushbutton2 to show max, min, std, mean graphic in GUI. and graph create by pushbutton1
4 件のコメント
採用された回答
Image Analyst
2013 年 1 月 27 日
In the callback for pushbutton1, put this:
maxValue = max(daily_rain);
minValue = min(daily_rain);
stdDev = std(daily_rain);
bar([minValue, maxValue, stdDev]); % Display in bar chart.
If that's not what you want, then say what you want. You haven't so far.
3 件のコメント
Image Analyst
2013 年 1 月 27 日
Why does your data extend below yMin?
% Plot data.
plot(data1, 'b-');
hold on; % Don't let the next plots blow away the data plot.
numberOfElements = numel(data);
% Plot max and min.
plot(maxValue*ones(1,numberOfElements), 'b-.');
plot(minValue*ones(1,numberOfElements), 'g-.');
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!