view signals/@sigreclock/sigreclock.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
parents 289445d368a7
children
line wrap: on
line source
classdef sigreclock < signal
	properties (GetAccess=private, SetAccess=immutable)
		fs
		sig
	end
	methods
		function s=sigreclock(rate,sig)
			s.fs=rate;
			s.sig=sig;
		end

		function s=tostring(sig), s=sprintf('reclock(%g,%s)',sig.rate,tostring(sig.sig)); end
		function s=construct(sig), s=construct(sig.sig); end
		function c=channels(s), c=channels(s.sig); end
		function c=rate(s), c=s.fs; end
	end
end