How do I plot a bitstream of [1,0,1,0] on Matlab?
Afficher commentaires plus anciens
I dont want to plot random bits but thats all i seem to find on the net.
Réponse acceptée
Plus de réponses (2)
Oleg Komarov
le 12 Fév 2011
1 vote
Other two options:
%Create a a = randi([0,1],1,100)
First option
spy(a)
Second option
scatter(1:numel(a),a,'s','MarkerEdgeColor','w','MarkerFaceColor','k') set(gca,'YTick',[0 1],'ylim',[-0.5 1.5])

Oleg
1 commentaire
mohammed AL-Mayali
le 3 Juil 2021
Thank you, sir... The first option is very useful
Henry
le 16 Juil 2015
bitstream = randi(2,50,1)-1; % create random stream of zeros and ones (binary)
stairs(bitstream); % This makes the bitstream visible
ylim([-5 5]); % Add some clearance above and below
Catégories
En savoir plus sur Programming dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!