Mercurial > hg > ltpda
annotate m-toolbox/classes/@unit/sqrt.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
rev | line source |
---|---|
0 | 1 % SQRT computes the square root of an unit object. |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: SQRT computes the square root of an unit object. | |
5 % | |
6 % CALL: u_out = sqrt(i_in); | |
7 % | |
8 % VERSION: $Id: sqrt.m,v 1.4 2011/02/18 16:48:55 ingo Exp $ | |
9 % | |
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
11 | |
12 function v = sqrt(vi) | |
13 v = copy(vi, 1); | |
14 v.exps = v.exps*0.5; | |
15 end |