Mercurial > hg > ltpda
diff m-toolbox/classes/+utils/@bin/bin.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/+utils/@bin/bin.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,40 @@ +% BIN class for wrapping of executable binary files. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: BIN class for wrapping of executable binary files. +% +% To see the available static methods, call +% +% >> methods utils.bin +% +% +% HISTORY: M Hewitson 07-10-08 +% Creation +% +% VERSION: $Id: bin.m,v 1.1 2008/10/07 20:44:28 hewitson Exp $ +% +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +classdef bin + + %------------------------------------------------ + %--------- Declaration of Static methods -------- + %------------------------------------------------ + methods (Static) + + + %------------------------------------------------------------- + % List other methods + %------------------------------------------------------------- + + varargout = fil(varargin); % wrapper for LISO fil function + + %------------------------------------------------------------- + + end % End static methods + + +end + +% END \ No newline at end of file