16 lines
388 B
Matlab
16 lines
388 B
Matlab
%%
|
|
clear; close all; clc;
|
|
|
|
%% Initialize Simulation and Inputs
|
|
initializeExperiment('tomography', 'light');
|
|
|
|
%% Run Close Loop Simulations
|
|
runSimulation('vc', 'light', 'cl', 'none');
|
|
runSimulation('pz', 'light', 'cl', 'none');
|
|
% runSimulation('vc', 'heavy', 'cl', 'none');
|
|
% runSimulation('pz', 'heavy', 'cl', 'none');
|
|
|
|
%%
|
|
opts_inputs = struct('Dw', true);
|
|
initializeInputs(opts_inputs);
|