wolffd@0: function val = get(a, propName) wolffd@0: % GET Get properties from the MIRtemporal object wolffd@0: % and return the value wolffd@0: wolffd@0: switch propName wolffd@0: case 'Time' wolffd@0: val = get(a,'Pos'); wolffd@0: case 'Centered' wolffd@0: val = a.centered; wolffd@0: case 'NBits' wolffd@0: val = a.nbits; wolffd@0: otherwise wolffd@0: val = get(mirdata(a),propName); wolffd@0: end