-
Notifications
You must be signed in to change notification settings - Fork 1
/
invpowspec.m
64 lines (53 loc) · 1.29 KB
/
invpowspec.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
function x = invpowspec(y, sr, wintime, steptime, excit)
%x = invpowspec(y, sr, wintime, steptime, excit)
%
% Attempt to go back from specgram-like powerspec to audio waveform
% by scaling specgram of white noise
%
% default values:
% sr = 8000Hz
% wintime = 25ms (200 samps)
% steptime = 10ms (80 samps)
% which means use 256 point fft
% hamming window
%
% excit is input excitation; white noise is used if not specified
% for sr = 8000
%NFFT = 256;
%NOVERLAP = 120;
%SAMPRATE = 8000;
%WINDOW = hamming(200);
[nrow, ncol] = size(y);
if nargin < 2
sr = 8000;
end
if nargin < 3
wintime = 0.025;
end
if nargin < 4
steptime = 0.010;
end
if nargin < 5
r = [];
else
r = excit;
end
winpts = round(wintime*sr);
steppts = round(steptime*sr);
NFFT = 2^(ceil(log(winpts)/log(2)));
if NFFT ~= 2*(nrow-1)
disp('Inferred FFT size doesn''t match specgram');
end
NOVERLAP = winpts - steppts;
SAMPRATE = sr;
% Values coming out of rasta treat samples as integers,
% not range -1..1, hence scale up here to match (approx)
%y = abs(specgram(x*32768,NFFT,SAMPRATE,WINDOW,NOVERLAP)).^2;
xlen = winpts + steppts*(ncol - 1);
if length(r) == 0
r = randn(xlen,1);
end
r = r(1:xlen);
R = specgram(r/32768/12, NFFT, SAMPRATE, winpts, NOVERLAP);
R = R .* sqrt(y);;
x = ispecgram(R, NFFT, SAMPRATE, winpts, NOVERLAP);