Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = spdiags([1 2 3;4 5 6;7 8 9]);
assert(isequal(spdiags(inv_spdiags(x)),x))
|
2 | Pass |
%%
b = spdiags(eye(10));
assert(isequal(spdiags(inv_spdiags(b)),b))
|
3 | Pass |
%%
x = spdiags([1 2 3;4 5 6]);
assert(isequal(spdiags(inv_spdiags(x)),x))
|
4 | Pass |
%%
y = spdiags(magic(9));
assert(isequal(spdiags(inv_spdiags(y)),y))
|
5 | Pass |
%%
x = spdiags(magic(5));
assert(isequal(spdiags(inv_spdiags(x)),x))
|
6 | Pass |
%%
z = spdiags(ones(10));
assert(isequal(spdiags(inv_spdiags(z)),z))
|
7 | Pass |
%%
x = spdiags(randi(10,5));
assert(isequal(spdiags(inv_spdiags(x)),x))
|
8 | Pass |
%%
x = spdiags(randi(5,[3 2]));
assert(isequal(spdiags(inv_spdiags(x)),x))
|
9 | Pass |
%%
a = spdiags(zeros(5));
assert(isequal(spdiags(inv_spdiags(a)),a))
|
2486 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
168 Solvers
365 Solvers
Is the paranthesis sequence balanced ?
89 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!