Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

I have divided a matrix of 9945 by 4 into 340 matrices of 117 by 1, I want, (after my required operation) i want to recombine them as single matrix of 9945 by 4. how can i do this using loop?

1 vue (au cours des 30 derniers jours)
Sajid Sarwar
Sajid Sarwar le 18 Nov 2018
Clôturé : Stephen23 le 19 Nov 2018
st=rand(9945,4)
for n=1:85
Baserow = (n-1) * 117;
for n1 = 1:4
Subset = st(Baserow+(1:117),n1, :)
txSig = ofdmMod(Subset);
y = awgn(txSig, SNR(k));
sigRx = ofdmDemod(y); % generates 340 matrices of 117 by 1.
end
end
what should i do to combine 340 matrices of 117 by 1 to make a single matrix of 9945 by 4?
  1 commentaire
Stephen23
Stephen23 le 19 Nov 2018
Duplicate:
https://www.mathworks.com/matlabcentral/answers/430567-how-to-combine-340-sub-matrices-of-117-by-1-into-one-matrix-of-9945-by-1-i-m-working-on-ofdm-subcar

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by