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 comments
Loading...
Problem Recent Solvers33
Suggested Problems
-
Find common elements in matrix rows
2720 Solvers
-
Create a square matrix of multiples
502 Solvers
-
Create a Multiplication table matrix...
697 Solvers
-
find the roots of a quadratic equation
243 Solvers
-
204 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!