view m-toolbox/classes/@unit/times.m @ 14:6d43f39633b8
database-connection-manager
Remove unused functions from utils.jmysql
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % TIMES implements times operator for unit objects.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: TIMES implements times operator for unit objects.
+ − %
+ − % CALL: a = a1.*scalar
+ − % a = a1.*a2
+ − %
+ − % VERSION: $Id: times.m,v 1.5 2011/02/18 16:48:55 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function v = times(v1,v2)
+ −
+ − if isnumeric(v1)
+ − v1 = unit();
+ − end
+ − if isnumeric(v2)
+ − v2 = unit();
+ − end
+ −
+ − v = unit;
+ − v.strs = [v1.strs v2.strs];
+ − v.exps = [v1.exps v2.exps];
+ − v.vals = [v1.vals v2.vals];
+ −
+ − % v = unit.simplify(v);
+ −
+ − end