Skip to content

Commit 9cad967

Browse files
committed
Reorganize navigation; make it work better in MATLAB Online
1) Add HelperFunctions/OpenOverview.m, Overview.html, Navigation.mlx and Startup.m 2) Update all instructional and application scripts to include return-to-navigation arrows 3) Add corrections to the README and include Open in MATLAB Online links. 4) Add Data to the path in loasStormData to compensate for files that are missing from the project when it is first loaded 5) Update the project to ignore missing files and include new ones 6) Remove the Navigation folder since its contents have moved into HelperFunctions
1 parent 3d7e93f commit 9cad967

File tree

57 files changed

+161
-60
lines changed

Some content is hidden

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

57 files changed

+161
-60
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
*.asv
55

66
Data/allStorms.mat
7-
Data/allStorms.csv
7+
Data/allStorms.csv
8+
9+
Solutions.zip

Data/loadStormData.mlx

19 Bytes
Binary file not shown.
-185 Bytes
Binary file not shown.

HelperFunctions/Navigation.mlx

4.27 MB
Binary file not shown.

HelperFunctions/OpenOverview.m

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
function OpenOverview
2+
% Open the overview file
3+
locDir = pwd;
4+
if contains(locDir,filesep+"MATLAB Drive")
5+
open("Navigation.mlx")
6+
else
7+
open("Overview.html")
8+
end
9+
10+
% Close the current script
11+
close(matlab.desktop.editor.getActive)
12+
13+
end
File renamed without changes.

HelperFunctions/Startup.m

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function Startup
2+
% Open the overview file
3+
locDir = pwd;
4+
if contains(locDir,filesep+"MATLAB Drive")
5+
open("NavigationOverview.mlx")
6+
else
7+
open("Overview.html")
8+
end
9+
10+
end

Interpolation/interpolation.mlx

-191 Bytes
Binary file not shown.

Interpolation/trackStorms.mlx

-185 Bytes
Binary file not shown.

Navigation/OpenOverview.m

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)