Mercurial > hg > camir-aes2014
annotate toolboxes/MIRtoolbox1.3.2/MIRToolbox/@miraudio/set.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
rev | line source |
---|---|
wolffd@0 | 1 function aa = set(a,varargin) |
wolffd@0 | 2 % SET Set properties for the miraudio object |
wolffd@0 | 3 % and return the updated object |
wolffd@0 | 4 |
wolffd@0 | 5 t = mirtemporal(a); |
wolffd@0 | 6 t = set(t,'Title',get(a,'Title'),'Abs',get(a,'Abs'),'Ord',get(a,'Ord'),... |
wolffd@0 | 7 varargin{:}); |
wolffd@0 | 8 aa.fresh = a.fresh; |
wolffd@0 | 9 aa = class(aa,'miraudio',t); |