Mercurial > repos > public > sbplib
view print_issparse.m @ 666:2d85f17a8aec feature/utux2D
Add possibility for damping terms at interpolation interface.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 16 Oct 2017 21:56:12 -0700 |
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