how to remove points which height (axis y) is more than 75% of the height
1 回表示 (過去 30 日間)
古いコメントを表示
I have a graphic and i have to Remove all points which height (in the axis y) are more than 75% of the height. Actually, i don't remove this points, just move them to (x, 0.75·heightofword)
How can i do this?
Thanks very much!!!
0 件のコメント
採用された回答
Image Analyst
2013 年 10 月 1 日
Just clip the y axis to 75% of the max y value.
maxY = max(y);
maxYForGraph = 0.75 * maxY;
ylim([min(y), maxYForGraph]);
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Construction についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!