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 Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by