Given an nxn matrix A, how do I produce a lower triangular matrix with ones on the diagonal?
    4 views (last 30 days)
  
       Show older comments
    
Given an nxn matrix A, how do I produce a lower triangular matrix with ones on the diagonal?
I tried 
A = rand(n,n);
L = tril(A,1) + diag(ones(1, size(A,1))) ;
but it isn't working.
0 Comments
Answers (1)
See Also
Categories
				Find more on Linear Algebra 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!
