I need to create a diagonal matrix where the diagonal elements are a vector
I need to create a diagonal matrix where the diagonal elements are a vector
The vector should look something like,
[1 2 3 0 0 0
0 1 2 3 0 0
0 0 1 2 3 0
0 0 0 1 2 3];
I know the vector ([1 2 3]) that I wish to 'paste' along the diagonal but I do not know the size of the array so the number of rows would need to be determined by a variable N.
3 Answers
3
You can use spdiags
to set the diagonals and have the desired shape:
spdiags
n = 4;
A = full(spdiags(ones(n,1)*[1,2,3],[0,1,2],n,n+2));
This returns:
A =
1 2 3 0 0 0
0 1 2 3 0 0
0 0 1 2 3 0
0 0 0 1 2 3
It's a bit crude, but possible to construct the desired matrix as toeplitz:
a = [1 2 3];
toeplitz([a(1); zeros(length(a),1)],[a(:); zeros(length(a),1)])
with answer:
ans =
1 2 3 0 0 0
0 1 2 3 0 0
0 0 1 2 3 0
0 0 0 1 2 3
You can also use 2D-convolution:
v = [1 2 3];
N = 4;
result = conv2(v, eye(N))
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.