The spdiags function extracts all nonzero diagonals from the m-by-n matrix A.
So if
A = [1 2 3;4 5 6;7 8 9]
then
spdiags(A) = [7 4 1 0 0;
0 8 5 2 0;
0 0 9 6 3]
But if I give you spdiags(A), can you give me A ?
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers43
Suggested Problems
-
Number of 1s in the Binary Representation of a Number
481 Solvers
-
Project Euler: Problem 1, Multiples of 3 and 5
3680 Solvers
-
Back to basics 21 - Matrix replicating
1801 Solvers
-
Convert a vector into a number
615 Solvers
-
Solving Quadratic Equations (Version 1)
505 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
% this problem is not guaranteed solvable
isequal(spdiags([eye(5) zeros(5)]),spdiags(eye(5)))