How to plot binary input ?
61 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nasser
el 24 de Nov. de 2011
Respondida: salih
el 2 de En. de 2015
how to plot binary input using matlab?
for example; a = [ 1 0 0 0 1 1 0 1 0 1 0 1 0 1 ]
0 comentarios
Respuesta aceptada
Más respuestas (5)
Wayne King
el 24 de Nov. de 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])
0 comentarios
Jan
el 24 de Nov. de 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');
0 comentarios
salih
el 2 de En. de 2015
how polt binary even and odd from for example {0 0 1 1 0 0 }
0 comentarios
Ver también
Categorías
Más información sobre Transmitters and Receivers en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!