Problem 43011. Convert a vector to a lower triangular matrix
I now have a row vector and I want to convert it to a lower trilangular matrix.
The rows of the lower trilangular matrix have the corresponding elements of the vector.
For example:
input = 1:16
output = [
1 0 0 0 0 0
2 3 0 0 0 0
4 5 6 0 0 0
7 8 9 10 0 0
11 12 13 14 15 0
16 0 0 0 0 0]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers31
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2803 Solvers
-
Is my wife right? Now with even more wrong husband
1338 Solvers
-
The sum of the numbers in the vector
636 Solvers
-
Convert a Cell Array into an Array
2161 Solvers
-
Find the position of first minimum value in an integer array with numbers
181 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!