How to created a specific symmetric Toeplitz matrix?

1 回表示 (過去 30 日間)
Omar B.
Omar B. 2020 年 8 月 9 日
編集済み: Are Mjaavatten 2020 年 8 月 11 日
Hi , Could you please help to simplify the following code. I created a symmetric Toeplitz matrix where its eigenvalues [ 0.28878, 1.7141].
I want the same matrix, so can we create it in a simple way. For example, can we get the same matrix when we just multiply a scalar by toeplitz(R)?
N=200;
Ns=1:N;
R=1./Ns;
D=toeplitz(R);
B=D+3*pi/7 *eye(N);
A=1/6 * B;
s=eig(A)
  1 件のコメント
Are Mjaavatten
Are Mjaavatten 2020 年 8 月 11 日
編集済み: Are Mjaavatten 2020 年 8 月 11 日
A = toeplitz(R)/6+pi/14*eye(N)
A trivial simplification of your code, but I doubt that it is possible to do much better.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeEigenvalues & Eigenvectors についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by