how to remove points which height (axis y) is more than 75% of the height
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Antonella
el 1 de Oct. de 2013
Comentada: Antonella
el 1 de Oct. de 2013
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 comentarios
Respuesta aceptada
Image Analyst
el 1 de Oct. de 2013
Just clip the y axis to 75% of the max y value.
maxY = max(y);
maxYForGraph = 0.75 * maxY;
ylim([min(y), maxYForGraph]);
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Construction en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!