Code covered by the BSD License  

Highlights from
A Numerical Tour of Signal Processing

from A Numerical Tour of Signal Processing by Gabriel Peyre
A set of Matlab experiments that illustrates advanced computational signal and image processing.

make_sparse(i,j,x)
function A = make_sparse(i,j,x)

% make_sparse - synonymous with sparse(i,j,x)

A = sparse( i, j, x );

Contact us at files@mathworks.com