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 :)

采纳的回答

Star Strider
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 个)

madhan ravi
madhan ravi 2020-6-15
doc repmat
doc repelem

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by