Mercurial > hg > ltpda
view m-toolbox/classes/@unit/HzToS.m @ 24:056f8e1e995e database-connection-manager
Properly record history in fromRepository constructors
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% HZTOS convert any 'Hz' units to 's' %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: HZTOS convert any 'Hz' units to 's'. % % CALL: a = a.HzToS() % % VERSION: $Id: HzToS.m,v 1.4 2011/04/08 08:56:34 hewitson Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function HzToS(u) idx = strcmp(u.strs, 'Hz'); u.strs(idx) = {'s'}; u.exps(idx) = -u.exps(idx); u.vals(idx) = 1./u.vals(idx); end