Mercurial > hg > camir-aes2014
annotate toolboxes/MIRtoolbox1.3.2/AuditoryToolbox/SetGain.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 % filter = SetGain(filter, desired, f, fs) |
wolffd@0 | 2 % Set the gain of a filter (1x5 vector) to any desired gain |
wolffd@0 | 3 % at any desired frequency (f). |
wolffd@0 | 4 |
wolffd@0 | 5 % (c) 1998 Interval Research Corporation |
wolffd@0 | 6 |
wolffd@0 | 7 function filter = SetGain(filter, desired, f, fs) |
wolffd@0 | 8 oldGain = 10^(FreqResp(filter, f, fs)/20); |
wolffd@0 | 9 filter(1:3) = filter(1:3)*desired/oldGain; |