view 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 source

% 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