view print_issparse.m @ 701:e89715fe6a6e feature/optim

add imaginary part to closure in hamiltonian
author Ylva Rydin <ylva.rydin@telia.com>
date Thu, 19 Oct 2017 09:48:18 +0200
parents 54d3ab296ba0
children
line wrap: on
line source

function print_issparse(A)
    warning('Deprecated! Use printExpr() instead!');
    b = issparse(A);
    if b
        s = 'true';
    else
        s = 'false';
    end
    fprintf('%8s is sparse: %s\n',inputname(1),s);
end