Plotting
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I would like plot a few vectors but I don't want to plot the values of zero. How can I do this the most efficient way?
0 commentaires
Réponses (1)
the cyclist
le 16 Oct 2011
A more detailed question would allow a more detailed answer, but here is a basic step:
indexToNonZeroX = (x~=0); % There are many ways to do this
plot(x(indexToNonZeroX))
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!