comparison m-toolbox/classes/@pzmodel/mtimes.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 % MTIMES overloads the multiplication operator for pzmodels.
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: TIMES overloads the multiplication operator for pzmodels.
5 %
6 % CALL: pzm = times(pzm1, pzm2);
7 % pzm = pzm1*pzm2;
8 %
9 % This just calls times.m.
10 %
11 % <a href="matlab:utils.helper.displayMethodInfo('pzmodel', 'mtimes')">Parameters Description</a>
12 %
13 % VERSION: $Id: mtimes.m,v 1.5 2011/04/08 08:56:32 hewitson Exp $
14 %
15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16
17 function varargout = mtimes(varargin)
18
19 varargout{:} = times(varargin{:});
20
21 end
22