annotate aim-mat/tools/units/weight/@unit_weight_t/unit_weight_t.m @ 0:74dedb26614d

Initial checkin of AIM-MAT version 1.5 (6.4.2011).
author tomwalters
date Fri, 20 May 2011 12:32:31 +0100
parents
children
rev   line source
tomwalters@0 1 function nu=unit_weight_t()
tomwalters@0 2
tomwalters@0 3 str.name='t';
tomwalters@0 4 str.fullname='tons';
tomwalters@0 5
tomwalters@0 6 str.converter=unitconvertermultpow(1000,1);
tomwalters@0 7
tomwalters@0 8 un=unit(str.name,str.fullname,str.converter);
tomwalters@0 9 nu=class(str,'unit_weight_t',un);