How to plot binary input ?
Show older comments
how to plot binary input using matlab?
for example; a = [ 1 0 0 0 1 1 0 1 0 1 0 1 0 1 ]
Accepted Answer
More Answers (5)
Wayne King
on 24 Nov 2011
a = [ 1 0 0 0 1 1 0 1 0 1 0 1 0 1 ];
stem(a,'markerfacecolor',[0 0 1]);
set(gca,'ylim',[-1.5 1.5])
Jan
on 24 Nov 2011
a = [ 1 0 0 0 1 1 0 1 0 1 0 1 0 1 ];
plot(a);
or perhaps:
plot(1:length(a), a, 'o');
Nasser
on 24 Nov 2011
0 votes
2 Comments
Walter Roberson
on 24 Nov 2011
http://www.mathworks.com/help/techdoc/ref/stairs.html
Nasser
on 25 Nov 2011
salih
on 2 Jan 2015
0 votes
how polt binary even and odd from for example {0 0 1 1 0 0 }
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!