How to generate a symmetric Toeplitz matrix?

조회 수: 1 (최근 30일)
Omar B.
Omar B. 2020년 1월 18일
편집: Omar B. 2020년 1월 26일
How to generate a symmetric Toeplitz matrix ?

채택된 답변

Stephan
Stephan 2020년 1월 18일
편집: Stephan 2020년 1월 18일
>> toeplitz([-pi 0 pi])
ans =
-3.1416 0 3.1416
0 -3.1416 0
3.1416 0 -3.1416
>> toeplitz([-pi -pi/2 0 pi/2 pi])
ans =
-3.1416 -1.5708 0 1.5708 3.1416
-1.5708 -3.1416 -1.5708 0 1.5708
0 -1.5708 -3.1416 -1.5708 0
1.5708 0 -1.5708 -3.1416 -1.5708
3.1416 1.5708 0 -1.5708 -3.1416
  댓글 수: 5
Omar B.
Omar B. 2020년 1월 19일
Thank you so much
Stephan
Stephan 2020년 1월 19일
Did you notice that you can accept and/or vote for useful answers?

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by