how to create a symmetric Toeplitz matrix with bounds on eigenvalues?
2 次查看(过去 30 天)
显示 更早的评论
Is there a way to creat a symmetic Toeplitz matrix of size 400 X 400 with real entries and its largest eigenvalue is 5 and the smallest eigenvalue is -5?
1 个评论
Matt J
2020-1-27
The question as originally posted:
"Is there a way to creat a symmetic Toeplitz matrix of size 400 X 400 with real entries and its largest eigenvalue is 5 and the smallest eigenvalue is -5?"
采纳的回答
Matt J
2020-1-24
R=fft(eye(400))/sqrt(400);
e=zeros(1,400);
e(2)=-10; e(end-1)=+10;
e=ifftshift(e);
T=(R'*diag(e)*R);
T=real((T+T.')/2);
>> min(eig(T))
ans =
-5.0000
>> max(eig(T))
ans =
5.0000
>> norm(T-T.')
ans =
0
2 个评论
更多回答(1 个)
Christine Tobler
2020-1-27
You can use the MATLAB function toeplitz with one input argument (two-input returns a non-symmetric Toeplitz matrix).
1 个评论
Christine Tobler
2020-1-27
@Matt J, thanks for clarifying. When I was looking at this post 2 hours ago, it was only asking for symmetric Toeplitz matrix, without the condition on the eigenvalues.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Particle & Nuclear Physics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!