how to optimize a diag matrix with sparse
2 views (last 30 days)
Show older comments
How to optimize this diagonal matrix using sparse :
a=diag([-ones(9,1)],-1)+diag([ones(10,1)])+diag([0 ones(1,4) 0],4)
0 Comments
Answers (1)
James Tursa
on 5 Jun 2014
If you mean how to create the equivalent sparse matrix to your full matrix shown, try using the spdiags function instead of diag.
0 Comments
See Also
Categories
Find more on Operating on Diagonal Matrices 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!