view m-toolbox/classes/@unit/sToHz.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +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