Plot values exception [x1 x2 x3 ...]
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have x=1:100 and xx=[2 5 8 13 14 25 46 78 97 99] (whatever)
How to plot(x, '.b') (or scatterplot) to suppress xx values on x
0 comentarios
Respuesta aceptada
the cyclist
el 31 de Oct. de 2012
Editada: the cyclist
el 31 de Oct. de 2012
Assuming you mean that xx refers to the indices (i.e. locations in x, not the values of x), then this should work:
indicesToInclude = setdiff(1:100,xx);
plot(x(indicesToInclude),'.b')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots 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!