필터 지우기
필터 지우기

matlab coding

조회 수: 1 (최근 30일)
Janet
Janet 2012년 2월 22일
편집: Cedric 2013년 10월 20일
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
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일
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?
  댓글 수: 1
Janet
Janet 2012년 2월 23일
i have found out :)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 OFDM에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by