Hello,
Can you help me how to generate this matrix?

댓글 수: 2

Szabó Ármin
Szabó Ármin 2021년 3월 21일
Thank you!
Image Analyst
Image Analyst 2021년 3월 21일
If it worked, please Accept Bruno's answer below to give him "credit" for it. Thanks in advance.

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

 채택된 답변

Bruno Luong
Bruno Luong 2021년 3월 21일

0 개 추천

>> rho=rand
rho =
0.8832
>> N=4
N =
4
>> a=rho.^(0:N-1);
>> M=toeplitz(a,a)
M =
1.0000 0.8832 0.7800 0.6889
0.8832 1.0000 0.8832 0.7800
0.7800 0.8832 1.0000 0.8832
0.6889 0.7800 0.8832 1.0000
>> C = sigma^2*M % whatever sigma is

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2021년 3월 21일

댓글:

2021년 3월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by