matlab 生成隨機數序列

葉楓111發表於2018-06-24
  1. 生成0,1隨機序列
gt = randi([0,1],[1,100]); 
  1. 生成1,-1隨機序列
gt0 = sign(randn(1,codenum)); 

相關文章