I have a matrix A=[A0 A1]
A0 and A1 are [M x L] matrix and A is [M x LNt]
Another matrix B=[A0A0' A1A1']
B is M X M matrix and Ak' is [M x (p-L)] matrix
I have obtained A, but couldn't get B as dimensions vary
I have taken M=128,L=16,Nt=2,Nr=1,p=M/Nt=64
This is mimo ofdm project " Joint estimation of cfo,i/q imbalance and channel response of mimo ofdm sysytems"

댓글 수: 8

Jan
Jan 2012년 2월 22일
If it is urgent, I suggest to improve the question. We have to guess to much details, e.g. what is an "M X L matrix"? I guess this means [M x L]. But I have no idea about "M X LNt" or "[A0A0' A1A1']" - does the quote mean a transponation here? And what is "Ak'"?
How did you obtain A and what is the problem at obtaining B?
Does the last sentence provide any necessary information?
Please use dots to separate the sentences. The more time you invest to make the qeustion as easy to understand as possible, the high is the motivation to create a meaningful answer.
Janet
Janet 2012년 2월 22일
Pls have a look at my base paper
http://www.scribd.com/doc/48495968/My-Base-Paper in 3rd page
I am beginner in matlab and doing a project in communication
Pls help with it
Walter Roberson
Walter Roberson 2012년 2월 22일
http://www.mathworks.com/matlabcentral/answers/29922-why-your-question-is-not-urgent-or-an-emergency
Janet
Janet 2012년 2월 22일
M xLNt means 128x32 matrix
A is a matrix having elements [ A0 A1.....ANt-1 ]
since my Nt is 2, A becomes A=[A0 A1]
B=[A0A0' A1A1']
Ak' means A0 to Ant-1
Janet
Janet 2012년 2월 22일
i am a newbie here Walter..sorry for using urgent word
Honglei Chen
Honglei Chen 2012년 2월 22일
You said you have A, so do you have A0 and A1? I don't think a lot of people will volunteer to read the paper for you so you may want to frame your question to be very specific and relevant to MATLAB.
Janet
Janet 2012년 2월 22일
A is a matrix with elements A0 and A1
A=[A0 A1]
Janet
Janet 2012년 2월 22일
I have formed matrix A:
A0=randn(M,L);
A1=randn(M,L);
A=horzcat(A0,A1);

댓글을 달려면 로그인하십시오.

 채택된 답변

Honglei Chen
Honglei Chen 2012년 2월 22일

0 개 추천

OK, the question becomes more concrete now. Since you have A0 and A1, then you can do
A = [A0 A1];
B = [A0*A0' A1*A1'];
What is the dimension issue you mentioned in the question?

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Get Started with Phased Array System Toolbox에 대해 자세히 알아보기

태그

질문:

2012년 2월 22일

편집:

2013년 10월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by