Hi,,is there anyone who could tell me,how to generate a 10 bit binary data with only ONE in the first position and rest is zero?
    4 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    nafila aytija
 le 20 Mai 2016
  
    
    
    
    
    Commenté : Star Strider
      
      
 le 20 Mai 2016
            The data stream should be like this, A=[1 0 0 0 0 0 0 0 0 0]
0 commentaires
Réponse acceptée
  Star Strider
      
      
 le 20 Mai 2016
        If you want to be compatible with the MATLAB binary data representation convention, this works:
n = dec2bin(0, 10);
n(1) = '1';
2 commentaires
Plus de réponses (1)
  Azzi Abdelmalek
      
      
 le 20 Mai 2016
        
      Modifié(e) : Azzi Abdelmalek
      
      
 le 20 Mai 2016
  
      A=[1 zeros(1,9)]
or
dec2bin(2^9,10)-'0'
0 commentaires
Voir également
Catégories
				En savoir plus sur Logical dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!