not take into account zeros in a graph

1 Ansicht (letzte 30 Tage)
Bart
Bart am 12 Mär. 2012
Hi,
I have to make a graph of a few points. In these points there are zeros, like [3 0 2 0 0 0 5 0 2 0 0 0 4 0 1 0 0 8]. I want to connect the positive integers, but without the line going trough the zeros. How can I manage this?
Kind Regards, Bart

Antworten (2)

Andrei Bobrov
Andrei Bobrov am 12 Mär. 2012
z = [3 0 2 0 0 0 5 0 2 0 0 0 4 0 1 0 0 8]
[i1,i1] = find(z)
plot(i1,z(i1));grid on
  3 Kommentare
Andrei Bobrov
Andrei Bobrov am 12 Mär. 2012
index of 'z'
Jan
Jan am 12 Mär. 2012
index=find(z) is sufficient, because the 2nd index is not needed.

Melden Sie sich an, um zu kommentieren.


carmen
carmen am 12 Mär. 2012
another way is to use
z=[3 0 2 0 0 0 5 0 2 0 0 0 4 0 1 0 0 8];
z(z=0)=[] % now z == [3 2 5 2 4 1 8]
plot(z)
this codes removes the zero-valued indices, that means that the size z will decrease by the amount of zero values that were there before. however, not always this makes sense to a problem, particularly if the x-axis-spacing needs to stay unchanged.

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by