Mercurial > hg > aimmat
annotate aim-mat/tools/units/time/@unit_time_hz/unit_time_hz.m @ 4:537f939baef0 tip
various bug fixes and changed copyright message
author | Stefan Bleeck <bleeck@gmail.com> |
---|---|
date | Tue, 16 Aug 2011 14:37:17 +0100 |
parents | 74dedb26614d |
children |
rev | line source |
---|---|
tomwalters@0 | 1 function unitobj=unit_time_hz |
tomwalters@0 | 2 |
tomwalters@0 | 3 str.name='hz'; |
tomwalters@0 | 4 str.fullname='herz'; |
tomwalters@0 | 5 |
tomwalters@0 | 6 str.converter=unitconvertermultpow(1,-1); |
tomwalters@0 | 7 |
tomwalters@0 | 8 un=unit(str.name,str.fullname,str.converter); |
tomwalters@0 | 9 unitobj=class(str,'unit_time_hz',un); |
tomwalters@0 | 10 |
tomwalters@0 | 11 |
tomwalters@0 | 12 |