random gaussian noise with zero mean and unity variance
7 ビュー (過去 30 日間)
古いコメントを表示
Subscript indices must either be real positive integers or logicals.
Error in fffff
kk1=kk1(1+(0.1).*array_gaussian_noise);
0 件のコメント
採用された回答
Star Strider
2019 年 2 月 23 日
You are probably missing a multiplication (or other) operator.
Try this:
kk1 = kk1.*(1+(0.1).*array_gaussian_noise);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!