15 lines
205 B
Matlab
15 lines
205 B
Matlab
%%
|
|
clear; close all; clc;
|
|
|
|
%% Open the project
|
|
simulinkproject('./');
|
|
|
|
%% Initialization
|
|
% Initialize all the stages parameters
|
|
run init_data.m
|
|
|
|
% Initialize the perturbations
|
|
run init_perturbations.m
|
|
|
|
%%
|