view m-toolbox/classes/@unit/sToHz.m @ 37:a4b7ceae0403
database-connection-manager
Show backtrace on unit test errors
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
% STOHZ convert any 's' units to 'Hz'
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: STOHZ convert any 's' units to 'Hz'.
%
% CALL: a = a.sToHz()
%
% VERSION: $Id: sToHz.m,v 1.4 2011/04/08 08:56:35 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function sToHz(u)
idx = strcmp(u.strs, 's');
u.strs(idx) = {'Hz'};
u.exps(idx) = -u.exps(idx);
u.vals(idx) = 1./u.vals(idx);
end