Mercurial > repos > public > sbplib
view printSize.m @ 56:ce90abc350c5
Added documentation to setup_1d_plot. Added updatableLine.m
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 12 Nov 2015 12:03:45 -0800 |
parents | 54d3ab296ba0 |
children | 643bc513b8b8 |
line wrap: on
line source
function printSize(A) warning('Deprecated! Use printExpr() instead!'); s = size(A); fprintf('%8s has size: [%d, %d]\n',inputname(1),s(1),s(2)); end