Skip to content

Commit b88eab5

Browse files
committed
Add project= to each 'Open in MATLAB Online' link
1 parent 8704243 commit b88eab5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Fundamentals of Programming [![View <File Exchange Title> on File Exchange](https://www.mathworks.com/matlabcentral/images/matlab-file-exchange.svg)](https://www.mathworks.com/matlabcentral/fileexchange/103225-fundamentals-of-programming) or [Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/project=Fundamentals-of-Programming&FundamentalsofProgramming.prj)
1+
# Fundamentals of Programming [![View <File Exchange Title> on File Exchange](https://www.mathworks.com/matlabcentral/images/matlab-file-exchange.svg)](https://www.mathworks.com/matlabcentral/fileexchange/103225-fundamentals-of-programming) or [Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj)
22

33
**Curriculum Module**
44
_Created with R2021b. Compatible with R2021b and later releases._
@@ -11,7 +11,7 @@ These lessons can be used as part of a lecture, as activities in an instructiona
1111
## Get started with the Fundamentals of Programming interactive examples ##
1212
**Option 1: Download to Desktop** Get started by downloading and unzipping the repository. Then, double-click the FundamentalsofProgramming.prj file inside MATLAB&reg;.
1313

14-
**Option 2: [Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/project=Fundamentals-of-Programming&FundamentalsofProgramming.prj)**
14+
**Option 2: [Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj)**
1515
Log in to your MathWorks account to access your license. If you are associated with a university, use your university email to access a campus-wide license. The project will run automatically.
1616

1717
From there, you can follow the landing page instructions to get started with the examples. The instructions inside the live scripts will guide you through the exercises and activities.
@@ -26,7 +26,7 @@ This script brings together links and short descriptions of the content in the r
2626

2727
## ##
2828
**Introduction.mlx**
29-
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&FundamentalsofProgramming.prj&file=Introduction.mlx)
29+
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Introduction.mlx)
3030
This overview of the concepts of programming also includes discussion of errors, documentation, and other commonly encountered challenges for beginners.
3131

3232
<img src="https://user-images.githubusercontent.com/88841524/154118752-64db3bc0-8d47-4797-b669-69b0de9ebe76.png" width="500">
@@ -40,7 +40,7 @@ This overview of the concepts of programming also includes discussion of errors,
4040

4141
## ##
4242
**Data.mlx**
43-
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&FundamentalsofProgramming.prj&file=Data.mlx)
43+
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Data.mlx)
4444
This script introduces `double` and `string` data types through interactive examples and exercises.
4545

4646
<img src="https://user-images.githubusercontent.com/88841524/143084625-68e803df-696b-41ef-9cbc-74d08408f2c2.png" width="500">
@@ -55,7 +55,7 @@ This script introduces `double` and `string` data types through interactive exam
5555

5656
## ##
5757
**Arrays.mlx**
58-
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&FundamentalsofProgramming.prj&file=Arrays.mlx)
58+
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Arrays.mlx)
5959
This script introduces 1, 2, and 3-D arrays, as well as a brief overview of matrix operations. Applications include both text and image data.
6060

6161
<img src="https://user-images.githubusercontent.com/88841524/154118617-8a5e1656-d3a6-46ca-bfa5-6795b9fedf35.png" width="172"> <img src="https://user-images.githubusercontent.com/88841524/154118517-ad83511a-8f20-452e-93e1-dc0858a3eb78.png" width="349">
@@ -71,7 +71,7 @@ This script introduces 1, 2, and 3-D arrays, as well as a brief overview of matr
7171

7272
## ##
7373
**Branches.mlx**
74-
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&FundamentalsofProgramming.prj&file=Branches.mlx)
74+
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Branches.mlx)
7575
This script introduces the concept of conditional branching in the form of if/else branches and switch statements.
7676

7777
<img src="https://user-images.githubusercontent.com/88841524/154118810-85b52f3f-5372-48dc-88aa-e4d2a734d488.png" width="200">
@@ -82,7 +82,7 @@ This script introduces the concept of conditional branching in the form of if/el
8282

8383
## ##
8484
**Loops.mlx**
85-
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&FundamentalsofProgramming.prj&file=Loops.mlx)
85+
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Loops.mlx)
8686
This script introduces the concept of conditional looping in the form of for loops and while loops.
8787

8888
<img src="https://user-images.githubusercontent.com/88841524/143083387-21665b27-73f8-4a42-a899-095ef6ae250c.png" width="200">
@@ -93,7 +93,7 @@ This script introduces the concept of conditional looping in the form of for loo
9393

9494
## ##
9595
**ChaosGameProject.mlx**
96-
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&FundamentalsofProgramming.prj&file=ChaosGameProject.mlx)
96+
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=ChaosGameProject.mlx)
9797

9898
<img src="https://user-images.githubusercontent.com/88841524/143081545-f64dc84f-3272-40bf-b952-b53cc36e1594.png" width="100"> <img src="https://user-images.githubusercontent.com/88841524/143081535-9c589293-d2cd-4b2d-ae28-4ad9096311de.png" width="100"> <img src="https://user-images.githubusercontent.com/88841524/143081525-e89145ef-c3bb-4084-bf94-cc6f585a8d83.png" width="100">
9999

@@ -105,7 +105,7 @@ This script introduces the concept of conditional looping in the form of for loo
105105

106106
## ##
107107
**Algorithms.mlx**
108-
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&FundamentalsofProgramming.prj&file=Algorithms.mlx)
108+
[Open in MATLAB Online](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Algorithms.mlx)
109109

110110
<img src="https://user-images.githubusercontent.com/88841524/145443694-5c4552e4-687c-4bd0-b63e-68dca9ca7f85.gif" width="800">
111111

0 commit comments

Comments
 (0)