how to code matrix multiple time with different result and fill the next column
3 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Star Strider
on 15 Jun 2020
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.
.
2 Comments
More Answers (1)
See Also
Categories
Find more on Chebyshev in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!