view m-toolbox/classes/@unit/sToHz.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

% 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