File: phaseunlock_ref_mat.m

package info (click to toggle)
python-ltfatpy 1.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 41,408 kB
  • sloc: ansic: 8,546; python: 6,470; makefile: 15
file content (27 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (2)
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
function phaseunlock_ref_mat(filepath)
% Save the output of the phaseunlock function into a .mat file for some example
% inputs

if nargin < 1
    filepath = pwd();
end

filename=[filepath, '/phaseunlock_ref.mat'];
disp(filename)

data = {};

inputs_names = {'c', 'a'};
inputs = {ones(3), 1};
nb_outputs = 1;
outputs = cell(1, nb_outputs);
[outputs{:}] = phaseunlock(inputs{:});
data{end+1} = {inputs_names, inputs, outputs};

inputs = {ones(3, 3, 2), 1};
[outputs{:}] = phaseunlock(inputs{:});
data{end+1} = {inputs_names, inputs, outputs};

save(filename, 'data', '-V6');

end