annotate aim-mat/tools/units/frequency/@unit_frequency_mys/unit_frequency_mys.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 nu=unit_frequency_mys()
tomwalters@0 2
tomwalters@0 3 str.name='µs';
tomwalters@0 4 str.fullname='micro seconds';
tomwalters@0 5
tomwalters@0 6 str.converter=unitconvertermultpow(0.000001,-1);
tomwalters@0 7
tomwalters@0 8 un=unit(str.name,str.fullname,str.converter);
tomwalters@0 9 nu=class(str,'unit_frequency_mys',un);