how polt binary even and odd from for example {0 0 1 1 0 0 }
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
how polt binary even and odd from for example {0 0 1 1 0 0 }
Réponses (1)
Azzi Abdelmalek
le 2 Jan 2015
Modifié(e) : Azzi Abdelmalek
le 2 Jan 2015
a=[0 0 1 1 0 0]
stem(a,'r')
3 commentaires
salih
le 2 Jan 2015
Azzi Abdelmalek
le 2 Jan 2015
even_s=a(2:2:end)
odd_s=a(1:2:end)
salih
le 3 Jan 2015
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!