- Create a test a array of integer values including at least some ones and zeros and test it
- Read the documentation, first.
What does this line really do?
1 回表示 (過去 30 日間)
古いコメントを表示
a(1,a == 1) = -1;
a(1,a == 0) = 1;
I am not sure what does this line really do? Can someone explain to me?
2- Does anyone know the function of correlation, auto and cross? I want to build smooth function.
2 件のコメント
dpb
2021 年 12 月 6 日
採用された回答
David Hill
2021 年 12 月 6 日
Look at what this does.
a=randi(2,1,20)-1
a(a==1)=-1%same as a(1,a==1)=-1
a(a==0)=1%same as a(1,a==0)=1;
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!