Borrar filtros
Borrar filtros

Is it possible to only allow brush to select data from certain lines in a plot?

16 visualizaciones (últimos 30 días)
I built a GUI which allows a user to select points in a plot and save them or remove them. My code is something like:
fig = figure(1);
plot(t1, x1)
hold on
plot(t2, x2)
hold off
I want the user to be able to use the brush to select points from x2, but not points from x1. Is it possible to set x1 as a background image that the user can't interact with, or somehow activate the brush only for points in x2?

Respuesta aceptada

Adam Danz
Adam Danz el 15 de Nov. de 2021
Editada: Adam Danz el 15 de Nov. de 2021
Set HandleVisibility to off (or callback) for the graphics objects you'd like to hide from the brush tool.
Note that this will also hide the objects from other functions such as legend so you'll need to supply the handle in those cases (demo'd below).
fig = figure(1);
h1 = plot(t1, x1, 'HandleVisibility', 'off');
hold on
h2 = plot(t2, x2);
hold off
legend([h1, h2])

Más respuestas (0)

Categorías

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

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by