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

% 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