How to create matrix from descending number of vector elements without loop?
Show older comments
Example: I have vector [1 2 5 3 4], and want to create the square matrix [1 2 5 3 4; 1 2 5 3 0; 1 2 5 0 0; 1 2 0 0 0; 1 0 0 0 0], so that the first row has all elements, 2nd row has all but last element, 3rd has all but last 2 elements...all the way to the final row having only the first element.
I am able to do this with a for loop, but can it be done without the loop to save time (actual vector is very large)?
1 Comment
Andrei Bobrov
on 21 Jun 2018
How big? (What size of your vector?)
Accepted Answer
More Answers (1)
>> V = [1 2 5 3 4];
>> flipud(tril(repmat(V,5,1)))
ans =
1 2 5 3 4
1 2 5 3 0
1 2 5 0 0
1 2 0 0 0
1 0 0 0 0
and
>> hankel([1 2 5 3 4] )
ans =
1 2 5 3 4
2 5 3 4 0
5 3 4 0 0
3 4 0 0 0
4 0 0 0 0
1 Comment
Andrei Bobrov
on 21 Jun 2018
+1
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!