Skip to content

Commit 7cb32ac

Browse files
authored
Updates to R2023a (#11)
* Update HTML files to open models or scripts from hyperlinks. Save all model files in R2023a. * Update ChangeLog.md.
1 parent b73057d commit 7cb32ac

File tree

1,293 files changed

+15809
-15172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,293 files changed

+15809
-15172
lines changed

.gitattributes

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,51 @@
1-
# Git Attributes File
2-
# Use this as .gitattributes file.
3-
#
4-
# Copyright 2020 The MathWorks, Inc.
5-
6-
*.jpg -crlf -diff -merge
7-
*.png -crlf -diff -merge
8-
9-
*.pdf -crlf -diff -merge
10-
11-
*.docx -crlf -diff -merge
12-
*.pptx -crlf -diff -merge
13-
*.xlsx -crlf -diff -merge
14-
15-
# === For use with MathWorks tools ===
16-
# For details, see the MATLAB Documentation "Set Up Git Source Control".
17-
18-
# Tip*
19-
#
20-
# You can reduce your Git repository size by saving Simulink models in SLX
21-
# format **without** compression. Turning off compression results in larger SLX
22-
# files on disk but reduces repository size.
23-
#
24-
# To turn off SLX compression, open your Simulink SLX file. In the Toolstrip,
25-
# select Modeling tab. In the Design section, select Property Inspector. In the
26-
# Property Inspector, select Properties tab. In the General group, at SLX
27-
# Compression, select "None".
28-
#
29-
# (*based on the Simulink Documentation "Manage Model Versions and Specify Model
30-
# Properties")
31-
32-
# MATLAB binary files
33-
*.fig -crlf -diff -merge
34-
*.mat -crlf -diff -merge
35-
*.mdl -crlf -diff -merge
36-
*.mdlp -crlf -diff -merge
37-
*.mexa64 -crlf -diff -merge
38-
*.mexmaci64 -crlf -diff -merge
39-
*.mexw64 -crlf -diff -merge
40-
*.mlapp -crlf -diff -merge
41-
*.mldatx -crlf -diff -merge
42-
*.mlproj -crlf -diff -merge
43-
*.mlx -crlf -diff -merge
44-
*.p -crlf -diff -merge
45-
*.sfx -crlf -diff -merge
46-
*.sldd -crlf -diff -merge
47-
*.slreqx -crlf -diff -merge
48-
*.sltx -crlf -diff -merge
49-
*.slx -crlf -diff -merge
50-
*.slxc -crlf -diff -merge
51-
*.slxp -crlf -diff -merge
1+
# Git Attributes File
2+
# Use this as .gitattributes file.
3+
#
4+
# Copyright 2020 The MathWorks, Inc.
5+
6+
*.jpg -crlf -diff -merge
7+
*.png -crlf -diff -merge
8+
9+
*.pdf -crlf -diff -merge
10+
11+
*.docx -crlf -diff -merge
12+
*.pptx -crlf -diff -merge
13+
*.xlsx -crlf -diff -merge
14+
15+
# === For use with MathWorks tools ===
16+
# For details, see the MATLAB Documentation "Set Up Git Source Control".
17+
18+
# Tip*
19+
#
20+
# You can reduce your Git repository size by saving Simulink models in SLX
21+
# format **without** compression. Turning off compression results in larger SLX
22+
# files on disk but reduces repository size.
23+
#
24+
# To turn off SLX compression, open your Simulink SLX file. In the Toolstrip,
25+
# select Modeling tab. In the Design section, select Property Inspector. In the
26+
# Property Inspector, select Properties tab. In the General group, at SLX
27+
# Compression, select "None".
28+
#
29+
# (*based on the Simulink Documentation "Manage Model Versions and Specify Model
30+
# Properties")
31+
32+
# MATLAB binary files
33+
*.fig -crlf -diff -merge
34+
*.mat -crlf -diff -merge
35+
*.mdl -crlf -diff -merge
36+
*.mdlp -crlf -diff -merge
37+
*.mexa64 -crlf -diff -merge
38+
*.mexmaci64 -crlf -diff -merge
39+
*.mexw64 -crlf -diff -merge
40+
*.mlapp -crlf -diff -merge
41+
*.mldatx -crlf -diff -merge
42+
*.mlproj -crlf -diff -merge
43+
*.mlx -crlf -diff -merge
44+
*.p -crlf -diff -merge
45+
*.sfx -crlf -diff -merge
46+
*.sldd -crlf -diff -merge
47+
*.slreqx -crlf -diff -merge
48+
*.sltx -crlf -diff -merge
49+
*.slx -crlf -diff -merge
50+
*.slxc -crlf -diff -merge
51+
*.slxp -crlf -diff -merge

.github/workflows/ci.yml

Lines changed: 75 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,75 @@
1-
# GitHub Actions Workflow with MATLAB Actions
2-
#
3-
# For a general overview of GitHub Actions, see
4-
# https://docs.github.com/en/actions
5-
#
6-
# For using MathWorks products in GitHub Actions, see
7-
# https://github.com/matlab-actions/overview
8-
#
9-
# For details about the syntax of this file, see
10-
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
11-
12-
# Copyright 2021-2023 The MathWorks, Inc.
13-
14-
name: CI using MATLAB
15-
16-
on:
17-
push:
18-
branches: [ R2023a ]
19-
paths-ignore:
20-
- 'docs/**'
21-
- '**.md'
22-
- '**.png'
23-
- '**.svg'
24-
- '**.txt'
25-
- '**.xml'
26-
27-
pull_request:
28-
branches: [ R2023a ]
29-
paths-ignore:
30-
- 'docs/**'
31-
- '**.md'
32-
- '**.png'
33-
- '**.svg'
34-
- '**.txt'
35-
- '**.xml'
36-
37-
jobs:
38-
39-
job-check-project:
40-
runs-on: ubuntu-latest
41-
steps:
42-
43-
- name: Check out repository
44-
uses: actions/checkout@v3
45-
46-
- name: Setup MATLAB
47-
uses: matlab-actions/setup-matlab@v1
48-
with:
49-
release: R2023a
50-
51-
- name: Run tests
52-
uses: matlab-actions/run-command@v1
53-
with:
54-
command: openProject(pwd); BEVProject_CheckProject_runtests;
55-
56-
job-run-tests:
57-
58-
# This job starts only if the previous job is successful.
59-
needs: job-check-project
60-
61-
runs-on: ubuntu-latest
62-
steps:
63-
64-
- name: Check out repository
65-
uses: actions/checkout@v3
66-
67-
- name: Setup MATLAB
68-
uses: matlab-actions/setup-matlab@v1
69-
with:
70-
release: R2023a
71-
72-
- name: Run tests
73-
uses: matlab-actions/run-command@v1
74-
with:
75-
command: openProject(pwd); BEVProject_runtests;
1+
# GitHub Actions Workflow with MATLAB Actions
2+
#
3+
# For a general overview of GitHub Actions, see
4+
# https://docs.github.com/en/actions
5+
#
6+
# For using MathWorks products in GitHub Actions, see
7+
# https://github.com/matlab-actions/overview
8+
#
9+
# For details about the syntax of this file, see
10+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
11+
12+
# Copyright 2021-2023 The MathWorks, Inc.
13+
14+
name: CI using MATLAB
15+
16+
on:
17+
push:
18+
branches: [ R2023a ]
19+
paths-ignore:
20+
- 'docs/**'
21+
- '**.md'
22+
- '**.png'
23+
- '**.svg'
24+
- '**.txt'
25+
- '**.xml'
26+
27+
pull_request:
28+
branches: [ R2023a ]
29+
paths-ignore:
30+
- 'docs/**'
31+
- '**.md'
32+
- '**.png'
33+
- '**.svg'
34+
- '**.txt'
35+
- '**.xml'
36+
37+
jobs:
38+
39+
job-check-project:
40+
runs-on: ubuntu-latest
41+
steps:
42+
43+
- name: Check out repository
44+
uses: actions/checkout@v3
45+
46+
- name: Setup MATLAB
47+
uses: matlab-actions/setup-matlab@v1
48+
with:
49+
release: R2023a
50+
51+
- name: Run tests
52+
uses: matlab-actions/run-command@v1
53+
with:
54+
command: openProject(pwd); BEVProject_CheckProject_runtests;
55+
56+
job-run-tests:
57+
58+
# This job starts only if the previous job is successful.
59+
needs: job-check-project
60+
61+
runs-on: ubuntu-latest
62+
steps:
63+
64+
- name: Check out repository
65+
uses: actions/checkout@v3
66+
67+
- name: Setup MATLAB
68+
uses: matlab-actions/setup-matlab@v1
69+
with:
70+
release: R2023a
71+
72+
- name: Run tests
73+
uses: matlab-actions/run-command@v1
74+
with:
75+
command: openProject(pwd); BEVProject_runtests;

.gitignore

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# .gitignore
2-
#
3-
# Copyright 2020 The MathWorks, Inc.
4-
5-
stash/
6-
7-
*.pdf
8-
*.pptx
9-
10-
*.asv
11-
*.mldatx
12-
*.slxc
13-
14-
sfprj/
15-
slprj/
16-
17-
coverageR2022a/
1+
# .gitignore
2+
#
3+
# Copyright 2020 The MathWorks, Inc.
4+
5+
stash/
6+
7+
*.pdf
8+
*.pptx
9+
10+
*.asv
11+
*.mldatx
12+
*.slxc
13+
14+
sfprj/
15+
slprj/
16+
17+
coverageR2022a/

BEV/BEV_main_script.mlx

19 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)