forked from tomgoldstein/phasepack-matlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runSignalReconstructionDemo.m
97 lines (83 loc) · 3.99 KB
/
runSignalReconstructionDemo.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
%% runSignalReconstructionDemo.m
%
% This script will create phaseless measurements from a 1d test signal, and
% then recover the image using phase retrieval methods. We now describe
% the details of the simple recovery problem that this script implements.
%
% Recovery Problem
% This script creates a complex-valued random Gaussian signal. Measurements
% of the signal are then obtained by applying a linear operator to the
% signal, and computing the magnitude (i.e., removing the phase) of
% the results.
%
% Measurement Operator
% Measurement are obtained using a linear operator, called 'A', that
% contains random Gaussian entries.
%
% The Recovery Algorithm
% The image is recovered by calling the method 'solvePhaseRetrieval', and
% handing the measurement operator and linear measurements in as arguments.
% A struct containing options is also handed to 'solvePhaseRetrieval'.
% The entries in this struct specify which recovery algorithm is used.
%
% For more details, see the Phasepack user guide.
%
% PhasePack by Rohan Chandra, Ziyuan Zhong, Justin Hontz, Val McCulloch,
% Christoph Studer, & Tom Goldstein
% Copyright (c) University of Maryland, 2017
function runSignalReconstructionDemo()
%% Specify the signal length, and number of measurements
n = 100; % The signal length
m = 8*n; % The number of measurements
%% Build the target signal
x_true = randn(n,1)+1i*randn(n,1);
%% Create the measurement operator
% Note: we use a dense matrix in this example, but PhasePack also supports
% function handles. See the more complex 'runImageReconstructionDemo.m'
% script for an example using the fast Fourier transform.
A = randn(m,n)+1i*randn(m,n);
%% Compute phaseless measurements
b = abs(A*x_true);
%% Set options for PhasePack - this is where we choose the recovery algorithm
opts = struct; % Create an empty struct to store options
opts.algorithm = 'Fienup'; % Use the Fienup method to solve the retrieval problem. Try changing this to 'twf' for truncated Wirtinger flow.
opts.initMethod = 'optimal'; % Use the optimal spectral initializer method to generate an initial starting point for the solver
opts.tol = 1e-3; % The tolerance - make this smaller for more accurate solutions, or larger for faster runtimes
opts.verbose = 2; % Print out lots of information as the solver runs (set this to 1 or 0 for less output)
%% Run the Phase retrieval Algorithm
fprintf('Running %s algorithm\n',opts.algorithm);
% Call the solver using the measurement operator 'A', the
% measurements 'b', the length of the signal to be recovered, and the
% options. Note, the measurement operator can be either a function handle
% or a matrix. Here, we use a matrix. In this case, we have omitted the
% second argument. If 'A' had been a function handle, we would have
% handed the transpose of 'A' in as the second argument.
[x, outs] = solvePhaseRetrieval(A, [], b, n, opts);
% Note: 'outs' is a struct containing convergene information.
%% Remove phase ambiguity
% Phase retrieval can only recover images up to a phase ambiguity.
% Let's apply a phase rotation to align the recovered signal with the
% original so they look the same when we plot them.
rotation = sign(x'*x_true(:));
x = x*rotation;
% Print some useful info to the console
fprintf('Signal recovery required %d iterations (%f secs)\n',outs.iterationCount, outs.solveTimes(end));
%% Plot results
figure;
% Plot the true vs recovered signal. Ideally, this scatter plot should be
% clustered around the 45-degree line.
subplot(1,2,1);
scatter(real(x_true),real(x));
xlabel('Original signal value');
ylabel('Recovered signal value');
title('Original vs recovered signal');
% Plot a convergence curve
subplot(1,3,3);
convergedCurve = semilogy(outs.solveTimes, outs.residuals);
set(convergedCurve, 'linewidth',1.75);
grid on;
xlabel('Time (sec)');
ylabel('Error');
title('Convergence Curve');
set(gcf,'units','points','position',[0,0,1200,300]);
end