Mercurial > hg > smallbox
view solvers/SMALL_ompGabor/printf.m @ 166:1495bdfa13e9 danieleb
Updated grassmanian function (restored old computation of the dictionary) and added functions to the audio class
author | Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk> |
---|---|
date | Mon, 19 Sep 2011 14:53:23 +0100 |
parents | 31d2864dfdd4 |
children |
line wrap: on
line source
function str = printf(varargin) %PRINTF Print formatted text to screen. % PRINTF(FMT,VAL1,VAL2,...) formats the data in VAL1,VAL2,... according to % the format string FMT, and prints the result to the screen. % % The call to PRINTF(FMT,VAL1,VAL2,...) simply invokes the call % DISP(SPRINTF(FMT,VAL1,VAL2,...)). For a complete description of the % format string options see function SPRINTF. % % STR = PRINTF(...) also returns the formatted string. % Ron Rubinstein % Computer Science Department % Technion, Haifa 32000 Israel % ronrubin@cs % % April 2008 if (nargout>0) str = sprintf(varargin{:}); disp(str); else disp(sprintf(varargin{:})); end