Skip to content

Commit f070987

Browse files
committed
Fix relative links in approximatingDerivatives and Onramp links
1 parent 03d9536 commit f070987

33 files changed

+82
-4
lines changed

Data/loadStormData.mlx

1021 Bytes
Binary file not shown.
277 Bytes
Binary file not shown.

HelperFunctions/Navigation.mlx

1.5 KB
Binary file not shown.

HelperFunctions/Overview.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h2> Information </h2>
106106
<h2> Prerequisites </h2>
107107
These scripts assume familiarity with MATLAB at the level covered in
108108
<a
109-
href="https://www.mathworks.com/learn/tutorials/matlab-onramp.html">MATLAB
109+
href="https://matlabacademy.mathworks.com/details/matlab-onramp/gettingstarted">MATLAB
110110
Onramp</a> and the level of programming knowledge covered in the <a
111111
href="https://github.com/MathWorks-Teaching-Resources/Fundamentals-of-Programming">
112112
Fundamentals of Programming</a> interactive examples. They also require
@@ -292,7 +292,7 @@ <h2> <a name="module">Modules</a> </h2>
292292
% <h2> Prerequisites </h2>
293293
% These scripts assume familiarity with MATLAB at the level covered in
294294
% <a
295-
% href="https://www.mathworks.com/learn/tutorials/matlab-onramp.html">MATLAB
295+
% href="https://matlabacademy.mathworks.com/details/matlab-onramp/gettingstarted">MATLAB
296296
% Onramp</a> and the level of programming knowledge covered in the <a
297297
% href="https://github.com/MathWorks-Teaching-Resources/Fundamentals-of-Programming">
298298
% Fundamentals of Programming</a> interactive examples. They also require
@@ -440,4 +440,4 @@ <h2> <a name="module">Modules</a> </h2>
440440
% Copyright 2022 The MathWorks(TM), Inc.
441441
442442
##### SOURCE END #####
443-
--></body></html>
443+
--></body></html>

HelperFunctions/Startup.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
% Open the overview file
33
locDir = pwd;
44
if contains(locDir,filesep+"MATLAB Drive")
5-
open("Navigation.mlx")
5+
open("NavigationOverview.mlx")
66
else
77
open("Overview.html")
88
end

HelperFunctions/runMyTests.m

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import matlab.unittest.plugins.TestReportPlugin;
2+
3+
runner = matlab.unittest.TestRunner.withTextOutput;
4+
runner.addPlugin(TestReportPlugin.producingHTML('Verbosity',3))
5+
6+
results = runner.run(testsuite("tests"))
7+
8+
T = table(results)
9+
10+
% Alternate Option using runtests() rather than testsuite()
11+
% Because this one will not create the HTML output, it logs to a
12+
% diary file
13+
14+
% loc = pwd;
15+
% pat = lettersPattern + textBoundary("end");
16+
% fileName = extract(loc,pat);
17+
% diaryName = strcat(fileName + "TestOutput");
18+
% diary(diaryName)
19+
% results1 = runtests("smokeTests")
20+
% results2 = runtests("functionTests")
21+
% diary("off")
22+
% T = table([results1,results2])

Interpolation/hand.mlx

880 Bytes
Binary file not shown.

Interpolation/interpolation.mlx

1.09 KB
Binary file not shown.

Interpolation/trackStorms.mlx

880 Bytes
Binary file not shown.
800 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)