A is a Hilbert matrix of size n, in which each element equals aij=1/(i+j-1) . How can I create this matrix then to return the largest eigenvalue of A ?

4 ビュー (過去 30 日間)
A is a Hilbert matrix of size n, in which each element equals aij=1/(i+j-1) . How can I create this matrix then to return the largest eigenvalue of A ?
  2 件のコメント
Walter Roberson
Walter Roberson 2017 年 11 月 24 日
Green Arrow comments to their own question:
I want to delete this question and ask it again after formatting
Walter Roberson
Walter Roberson 2017 年 11 月 24 日
Green Arrow: You can edit your question; or better yet, post the new version of the question as a comment here.

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

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 11 月 23 日
H = hilb(n);
max( eig(H) )

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by