function x = test_sparse32 a = [1,0,3,4,5;6,2,3,5,0;0,0,0,0,2;0,4,5,0,3]; A = sparse(a); b = [3;2;5]; c = [2,4,3]; d = [9,3,2,4,9,0,5,4,2]; a(b,c) = d; A(b,c) = d; x = testeq(a,A);