How to create an n by n wilkinson matrix using diag

10 views (last 30 days)
How to create an n by n wilkinson bidiagonal matrix
  5 Comments
Walter Roberson
Walter Roberson on 18 Sep 2019
It looks like for the bidiagonal form, that the main diagonal should be n:-1:1 and that the diagonal to the right of it should be all n .
You can construct bidiagonal matrices by using diag() to construct each of the diagonals, and adding the matrices together.

Sign in to comment.

Accepted Answer

Bruno Luong
Bruno Luong on 19 Sep 2019
n = 10;
W = spdiags([n:-1:1; n*ones(1,n)]',[0 1],n,n);
  1 Comment
Walter Roberson
Walter Roberson on 19 Sep 2019
I believe that this is a homework assignment that specifically requires diag() be used.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!