Effacer les filtres
Effacer les filtres

How to plot binary input ?

53 vues (au cours des 30 derniers jours)
Nasser
Nasser le 24 Nov 2011
how to plot binary input using matlab?
for example; a = [ 1 0 0 0 1 1 0 1 0 1 0 1 0 1 ]

Réponse acceptée

Rick Rosson
Rick Rosson le 25 Nov 2011
Please try:
figure;
stairs([a,a(end)]);
HTH.
  1 commentaire
Nasser
Nasser le 25 Nov 2011
HTH : yeah, it does help .. thank you ;)

Connectez-vous pour commenter.

Plus de réponses (5)

Wayne King
Wayne King le 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
Jan le 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
Nasser le 24 Nov 2011
I mean the plotting should looks like : http://www.olson-technology.com/mr_fiber/images/digital.gif
  2 commentaires
Walter Roberson
Walter Roberson le 24 Nov 2011
http://www.mathworks.com/help/techdoc/ref/stairs.html
Nasser
Nasser le 25 Nov 2011
that is what I was looking for.
but there is a problem, the last binary input always missing !!
I mean when the input is a = [ 1 0 1 ]
it only draw [1 0]

Connectez-vous pour commenter.


Rick Rosson
Rick Rosson le 24 Nov 2011
figure;
stairs(a);
  1 commentaire
Nasser
Nasser le 25 Nov 2011
that is what I was looking for.
but there is a problem, the last binary input always missing !!
I mean when the input is a = [ 1 0 1 ]
it only draw [1 0]

Connectez-vous pour commenter.


salih
salih le 2 Jan 2015
how polt binary even and odd from for example {0 0 1 1 0 0 }

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by