-
Notifications
You must be signed in to change notification settings - Fork 9
/
FastBeamforming1mod.m
69 lines (53 loc) · 1.93 KB
/
FastBeamforming1mod.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
65
66
67
68
69
function [X, Y, B] = FastBeamforming1mod(CSM, plane_distance, frequencies, ...
scan_limits, grid_resolution, mic_positions, c)
% Fast (fewer loops, using array manipulation) beamforming considering
% steering vector formulation I 'by' Ennes Sarradj. I.e. it is the same
% as SarradjBeamforming.m using form1. This code is faster, but less
% intuitive to understand.
% Not propagating forward to the array center, i.e. use a reference
% distance.
% fprintf('\t------------------------------------------\n');
%
% Anwar Malgoezar, May 2018
% Group ANCE
fprintf('\tStart beamforming...\n');
% Setup scanning grid using grid_resolution and dimensions
N_mic = size(mic_positions, 2);
N_freqs = length(frequencies);
X = scan_limits(1):grid_resolution:scan_limits(2);
Y = scan_limits(3):grid_resolution:scan_limits(4);
Z = plane_distance;
N_X = length(X);
N_Y = length(Y);
N_Z = length(Z);
N_scanpoints = N_X*N_Y*N_Z;
x_t = zeros(N_scanpoints, 3);
x_t(:, 1) = repmat(X, 1, N_Y);
dummy = repmat(Y, N_X, 1);
x_t(:, 2) = dummy(:);
x_t(:, 3) = plane_distance;
x_0 = mean(mic_positions, 2);
B = zeros(1, N_scanpoints);
r_t0 = sqrt( (x_t(:,1) - x_0(1)).^2 + ...
(x_t(:,2) - x_0(2)).^2 + ...
(x_t(:,3) - x_0(3)).^2 );
reverseStr = '';
for K = 1:N_freqs
msg = sprintf('\tBeamforming %d/%d frequency points...\n', K, N_freqs);
fprintf([reverseStr, msg]);
reverseStr = repmat(sprintf('\b'), 1, length(msg));
k = 2*pi*frequencies(K)/c;
h = zeros(N_mic, size(x_t, 1));
for I = 1:N_mic
r_ti = sqrt( (x_t(:,1) - mic_positions(1,I)).^2 + ...
(x_t(:,2) - mic_positions(2,I)).^2 + ...
(x_t(:,3) - mic_positions(3,I)).^2 );
h(I, :) = 4*pi*exp(-1i*k*r_ti);
end
h = h/N_mic;
B = B + sum(h.*(CSM(:,:,K)*conj(h)), 1);
end
B = reshape(B, N_X, N_Y).';
fprintf('\tBeamforming complete!\n');
fprintf('\t------------------------------------------\n');
end