How can I code X matrix ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am studing "Bajwa et al.: Compressed Channel Sensing: A New Approach to Estimating Sparse Multipath Channels." I want to make matlab code about CCS 3 in the paper.
--Matlab code--
N0 = 5; % code length
M = 1; % the num. of codes
L = 5; % maximum delay
N0tilda = N0 + L -1;
--explain--
X is an N0tilda X L(2M+1) block matrix of the form
X = [X_{-M} ..... X_{0} ..... X_{M}.
--Matlab code--
X = zeros(N0tilda,L*(2*M+1));
---------------------------------------------------
Question?
How can I code X = [X_{-M} ..... X_{0} ..... X_{M}?
Here, each block Xm has dimension N0tilda x L
--Matlab code--
Xm=zeros(N0tilda,L);
0 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Operating on Diagonal Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!