Reputation: 13
I have two arrays to plot, in x axis : array a. In y axis array b (ones and zeros)
a
b
I want to plot vertical lines when the values of array b =1 i.e
a=[23 12 76 43 21 90] b=[1 0 1 1 0 1]
Upvotes: 0
Views: 233
Reputation: 9592
You may try bar plot.
a=[23 12 76 43 21 90]; b=[1 0 1 1 0 1]; bar(a,b)
Upvotes: 2