comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % BIN class for wrapping of executable binary files.
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: BIN class for wrapping of executable binary files.
5 %
6 % To see the available static methods, call
7 %
8 % >> methods utils.bin
9 %
10 %
11 % HISTORY: M Hewitson 07-10-08
12 % Creation
13 %
14 % VERSION: $Id: bin.m,v 1.1 2008/10/07 20:44:28 hewitson Exp $
15 %
16 %
17 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
18
19 classdef bin
20
21 %------------------------------------------------
22 %--------- Declaration of Static methods --------
23 %------------------------------------------------
24 methods (Static)
25
26
27 %-------------------------------------------------------------
28 % List other methods
29 %-------------------------------------------------------------
30
31 varargout = fil(varargin); % wrapper for LISO fil function
32
33 %-------------------------------------------------------------
34
35 end % End static methods
36
37
38 end
39
40 % END