Export all to R2019B

This commit is contained in:
Thomas Dehaeze 2021-04-19 13:52:37 +02:00
parent 9cc71b79a6
commit f36525346a
5 changed files with 7 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -418,8 +418,13 @@ run('meas_transformation.m')
#+end_src
#+begin_src matlab :tangle no :eval no
save_system('vibration_table', 'matlab/vibration_table_r2018a.slx', 'ExportToVersion', 'R2018A');
save_system('vibration_table', 'matlab/vibration_table_r2019b.slx', 'ExportToVersion', 'R2019B');
%% Used to export to another version
sim_versions = {'R2019B'}
for sim_version = sim_versions
save_system('vibration_table', ['matlab/' sim_version{1} '/vibration_table.slx'], 'ExportToVersion', sim_version{1});
save_system('accelerometer_3d', ['matlab/' sim_version{1} '/accelerometer_3d.slx'], 'ExportToVersion', sim_version{1});
save_system('accelerometer_3d_perfect', ['matlab/' sim_version{1} '/accelerometer_3d_perfect.slx'], 'ExportToVersion', sim_version{1});
end
#+end_src
#+begin_src matlab