Plotting a line through 2 points

7 visualizaciones (últimos 30 días)
Dennis
Dennis el 1 de Oct. de 2013
Comentada: Image Analyst el 15 de Sept. de 2020
Hello,
I have a file with a difference in acceleration between 2 conditions, filename is 'ad'. I need to draw a line through 25% and 75% of the max of this data and then find the x-position where this line intercepts the x-axis.
As an illustration, this is what I want to do: http://tinypic.com/r/rab7te/5
Any help is appreciated, thanks.

Respuesta aceptada

Image Analyst
Image Analyst el 1 de Oct. de 2013
Use the line() function. Just figure out the two endpoints, which shouldn't be very hard at all. Use "hold on" before you call line() so that you don't blow away the curve.
  5 comentarios
ErnestoE
ErnestoE el 15 de Sept. de 2020
Does this works for vertical lines too? i.e. if both values of x is the same?
Image Analyst
Image Analyst el 15 de Sept. de 2020
Yes. Just try it. And there is a new function xline() if you want the line to run all the way across the entire distance in y, instead of just between two points inside the axes.
xline(xLeft, 'Color', 'r', 'LineWidth', 3);

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Object Properties en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by