view m-toolbox/classes/@unit/power.m @ 11:9174aadb93a5
database-connection-manager
Add LTPDA Repository utility functions into utils.repository
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % POWER implements power operator for unit objects.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: POWER implements power operator for unit objects.
+ − %
+ − % CALL: a = a1.^scalar
+ − %
+ − % VERSION: $Id: power.m,v 1.7 2011/02/18 16:48:55 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function v = power(vi, exp)
+ − v = copy(vi, 1);
+ − if ~isnumeric(exp)
+ − error('### Can only raise units to a numeric power.');
+ − end
+ − v.exps = v.exps*exp;
+ −
+ − end