gpt4 book ai didi

python - 数组太大,无法在 matlab 中除法,但不能在 python 中除法

转载 作者:太空宇宙 更新时间:2023-11-03 14:53:33 25 4
gpt4 key购买 nike

我遇到的问题是 Matlab 中的数组太大。数组数据来自音频文件。我想得到脉冲响应。

我首先对原始音频和录制的音频进行 FFT。然后按原件划分记录。最后进行反 FFT 以获得脉冲响应。这就是我打算做的,但我卡在了部门部分。

卡住了使用Matlab,我发现了一个python code这样就可以了。我将代码重写到Matlab中,问题又出现了。代码不完整,但足以说明问题。

希望得到大家多多建议和批评。谢谢

计划执行但失败,因此继续执行下一个代码

[y_sweep,Fs] = audioread('sweep.wav');
[y_rec,Fs] = audioread('edit_rec_sweep_laptop_1.2.wav');
fft_y1 = abs(fft(y_rec(:,1)));
fft_y2 = abs(fft(y_rec(:,2)));
fft_x = abs(fft(y_sweep));
fft_h1 = fft_y1/fft_x;
% fft_h2 = fft_y2/fft_x;
% fft_h = [fft_h1,fft_h2];
% h1 = ifft(fft1_h);

从 python 中“翻译”了代码,但仍然失败,因此来到这里

[a,fs] = audioread('sweep.wav'); % sweep
[b,fs] = audioread('rec.wav'); % rec

a = pad(a,fs*50,fs*10);
b = pad(b,fs*50,fs*10);
[m,n] = size(b);
h = zeros(m,n);

for chan = 1:2
b1 = b(:,1);
ffta = abs(fft(a));
fftb = abs(fft(b1));
ffth = fftb / ffta;
end

pad.m 函数(从 python 翻译而来,但应该是正确的)

function y = pad(data, t_full, t_pre)
[row_dim,col_dim] = size(data);
t_post = t_full - row_dim - t_pre;
if t_post > 0
if col_dim == 1
y = [zeros(t_pre,1);data;zeros(t_post,1)];
% width = [t_pre,t_post];
else
y1 = [zeros(t_pre,1);data(:,1);zeros(t_post,1)];
y2 = [zeros(t_pre,1);data(:,2);zeros(t_post,1)];
y = [y1,y2];
% width = [[t_pre,t_post],[0,0]];
end
else
if col_dim == 1
y = [zeros(t_pre,1);data(t_full - t_pre:end,1)];
% width = [t_pre,0];
else
y = [zeros(t_pre,1);data(t_full - t_pre:end,1)];
% width = [[t_pre,0],[0,0]];
end
end

end

错误

Error using  \ 
Requested 4800000x4800000 (171661.4GB) array exceeds
maximum array size preference. Creation of arrays
greater than this limit may take a long time and
cause MATLAB to become unresponsive. See array size
limit or preference panel for more information.

Error in impulseresponse (line 13)
ffth = fftb / ffta;

最佳答案

正斜杠在 MATLAB 中是 mrdivide() 的简写形式。 这用于求解线性矩阵方程组。我想你想要的是 rdivide ./ 表示.

  • c = a/b仅相当于标准除法 if b是标量。

  • c = a./b是逐元素除法,其中 a 的每个元素除以 b 的对应元素.

    [1 2 3] ./ [2 4 9]
    >> ans = [0.5, 0.5, 0.3333]

因此,“计划执行的”代码的最后一个事件行变为

fft_h1 = fft_y1 ./ fft_x;

关于python - 数组太大,无法在 matlab 中除法,但不能在 python 中除法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45754382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com