how to code matrix multiple time with different result and fill the next column
8 次查看(过去 30 天)
显示 更早的评论
Hallo i really confused how to make this code.
i have matrix result SNR [6x1], the SNR result will be diferrent each time it is run
and i have RB = 5 , pls help me how to make SNR_RB = 6x5 matrix with different result
example matrix result :
Running SNR 1 Running SNR 2 Running SNR 3 Running SNR 4 Running SNR 5
Running SNR 1 Running SNR 2 Running SNR 3 Running SNR 4 Running SNR 5
Running SNR 1 Running SNR 2 Running SNR 3 Running SNR 4 Running SNR 5
Running SNR 1 Running SNR 2 Running SNR 3 Running SNR 4 Running SNR 5
Running SNR 1 Running SNR 2 Running SNR 3 Running SNR 4 Running SNR 5
Running SNR 1 Running SNR 2 Running SNR 3 Running SNR 4 Running SNR 5
i have a code if you want to help me :)
0 个评论
采纳的回答
Star Strider
2020-6-15
I have no idea exactly what you are doing, however this approach will create your matrix:
RB = 5;
for k = 1:RB
SNR = rand(6,1); % Calculate ‘SNR’ As (6x1) Vector
Running_SNR(:,k) = SNR;
end
Change appropriately to work with your data.
.
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Chebyshev 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!