Skip to content

Commit 3534e28

Browse files
committed
Fix project for 24a: h/t Wynter
1 parent 743f083 commit 3534e28

24 files changed

+45
-31
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -54,54 +54,54 @@ MATLAB® is used throughout.
5454
<a name="H_E8C62B23"></a>
5555
# Scripts
5656
<a name="H_FB3BEAB7"></a>
57-
## [**Introduction.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Introduction.mlx)
57+
## [**Introduction.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Introduction.mlx)
5858
| `Introduction` | **In this script, students will...** |
5959
| :-- | :-- |
60-
| [<img src="Images/Earth-Moon-Rocket.png" width="171" alt="Earth-Moon-Rocket.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Introduction.mlx) |- recognize and use the terms input and output. <br>- recognize, interpret, and respond to messages about syntax errors. <br>- recognize and interpret comments in code. <br>- use documentation and search to learn more about how to use a programming language. <br>- recognize and explain the importance of attention to detail when coding. |
60+
| [<img src="Images/Earth-Moon-Rocket.png" width="171" alt="Earth-Moon-Rocket.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Introduction.mlx) |- recognize and use the terms input and output. <br>- recognize, interpret, and respond to messages about syntax errors. <br>- recognize and interpret comments in code. <br>- use documentation and search to learn more about how to use a programming language. <br>- recognize and explain the importance of attention to detail when coding. |
6161

6262
<a name="H_DA6DEBA0"></a>
63-
## [**Data.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Data.mlx)
63+
## [**Data.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Data.mlx)
6464
| `Data` | **In this script, students will...** |
6565
| :-- | :-- |
66-
| [<img src="Images/Fading-Pi.png" width="171" alt="Fading-Pi.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Data.mlx) |- recognize and explain that floating point arithmetic does not operate under the same rules as real number arithmetic. <br>- apply the limitations of floating point arithmetic to computation. <br>- recognize and use strings to store and communicate textual data. <br>- recognize and use whitespace in string operations. <br>- recognize and interpret special characters that are neither text nor numbers. <br>- recognize and explain simple consequences of the interactions between data types. |
66+
| [<img src="Images/Fading-Pi.png" width="171" alt="Fading-Pi.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Data.mlx) |- recognize and explain that floating point arithmetic does not operate under the same rules as real number arithmetic. <br>- apply the limitations of floating point arithmetic to computation. <br>- recognize and use strings to store and communicate textual data. <br>- recognize and use whitespace in string operations. <br>- recognize and interpret special characters that are neither text nor numbers. <br>- recognize and explain simple consequences of the interactions between data types. |
6767

6868
<a name="H_9364948C"></a>
69-
## [**Arrays.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Arrays.mlx)
69+
## [**Arrays.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Arrays.mlx)
7070
| `Arrays` | **In this script, students will...** |
7171
| :-- | :-- |
72-
| [<img src="Images/Computer-Thoughtbubble.png" width="171" alt="Computer-Thoughtbubble.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Arrays.mlx) |- identify, create, and use vectors and matrices containing numbers or text. <br>- use vector indexing to extract information from a vector or matrix. <br>- identify standard file types and the corresponding extensions. <br>- explain why file type matters and import data from external files. <br>- recognize and use three dimensional arrays. |
72+
| [<img src="Images/Computer-Thoughtbubble.png" width="171" alt="Computer-Thoughtbubble.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Arrays.mlx) |- identify, create, and use vectors and matrices containing numbers or text. <br>- use vector indexing to extract information from a vector or matrix. <br>- identify standard file types and the corresponding extensions. <br>- explain why file type matters and import data from external files. <br>- recognize and use three dimensional arrays. |
7373

7474
<a name="H_8EADE081"></a>
75-
## [**Branches.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Branches.mlx)
75+
## [**Branches.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Branches.mlx)
7676
| `Branches` | **In this script, students will...** |
7777
| :-- | :-- |
78-
| [<img src="Images/Maze.png" width="171" alt="Maze.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Branches.mlx) |- recognize and apply if/then branching logic to solve problems. <br>- recognize and apply switch branching logic to solve problems. |
78+
| [<img src="Images/Maze.png" width="171" alt="Maze.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Branches.mlx) |- recognize and apply if/then branching logic to solve problems. <br>- recognize and apply switch branching logic to solve problems. |
7979

8080
<a name="H_C3C86B1D"></a>
81-
## [**Loops.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Loops.mlx)
81+
## [**Loops.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Loops.mlx)
8282
| `Loops` | **In this script, students will...** |
8383
| :-- | :-- |
84-
| [<img src="Images/SeasonLoopFinal.png" width="171" alt="SeasonLoopFinal.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Loops.mlx) |- use for loop logic and syntax to write and execute iterative code. <br>- use while loop logic and syntax to write and execute repetitive code, and decide when it is the correct method. |
84+
| [<img src="Images/SeasonLoopFinal.png" width="171" alt="SeasonLoopFinal.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Loops.mlx) |- use for loop logic and syntax to write and execute iterative code. <br>- use while loop logic and syntax to write and execute repetitive code, and decide when it is the correct method. |
8585

8686
<a name="H_3717D850"></a>
87-
## [**Chaos Game Project**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=ChaosGameProject.mlx)
87+
## [**Chaos Game Project**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/ChaosGameProject.mlx)
8888
| `Project` | **In this script, students will...** |
8989
| :-- | :-- |
90-
| [<img src="Images/ChaosGameAngle.png" width="83" alt="ChaosGameAngle.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=ChaosGameProject.mlx) [<img src="Images/ChaosGameSquare.png" width="83" alt="ChaosGameSquare.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=ChaosGameProject.mlx) |- apply conditional branching and looping logic in context to solve problems. <br>- explain that different programming solutions to the same problem can run in very different amounts of time. <br>- identify common file formats and their extensions. <br>- communicate results by exporting data from a program in a standard, shareable file format. |
90+
| [<img src="Images/ChaosGameAngle.png" width="83" alt="ChaosGameAngle.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/ChaosGameProject.mlx) [<img src="Images/ChaosGameSquare.png" width="83" alt="ChaosGameSquare.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/ChaosGameProject.mlx) |- apply conditional branching and looping logic in context to solve problems. <br>- explain that different programming solutions to the same problem can run in very different amounts of time. <br>- identify common file formats and their extensions. <br>- communicate results by exporting data from a program in a standard, shareable file format. |
9191

9292
<a name="H_23FB8762"></a>
93-
## [**Algorithms.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Algorithms.mlx)
93+
## [**Algorithms.mlx**](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Algorithms.mlx)
9494
| `Algorithms` | **In this script, students will...** |
9595
| :-- | :-- |
96-
| [<img src="Images/Algo-flowchart.png" width="171" alt="Algo-flowchart.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Algorithms.mlx) |- explain the concept of an algorithm. <br>- implement an algorithm presented in pseudocode. <br>- explain the importance of testing both code and algorithms. |
96+
| [<img src="Images/Algo-flowchart.png" width="171" alt="Algo-flowchart.png">](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/Algorithms.mlx) |- explain the concept of an algorithm. <br>- implement an algorithm presented in pseudocode. <br>- explain the importance of testing both code and algorithms. |
9797

9898
<a name="H_F8C0793B"></a>
9999
# Additional Scripts
100100

101101
[Main Menu](./MainMenu.mlx) - Just the link sections of this script for navigation
102102

103103

104-
[Collected Pro Tips](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=CollectedProTips.mlx) - Notes on how to implement particular concepts in MATLAB
104+
[Collected Pro Tips](https://matlab.mathworks.com/open/github/v1?repo=MathWorks-Teaching-Resources/Fundamentals-of-Programming&project=FundamentalsofProgramming.prj&file=Scripts/CollectedProTips.mlx) - Notes on how to implement particular concepts in MATLAB
105105

106106
<a name="H_000D2382"></a>
107107
# License
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info Value="false"/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="environment.loadSimulink" type="Command"/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="1" type="DIR_SIGNIFIER"/>

resources/project/KAXfQgCar2Yb8zOxgvf9hdmLP1E/LSet0l3aIyGj4-Ik2gThfEfPxBId.xml

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

resources/project/KAXfQgCar2Yb8zOxgvf9hdmLP1E/LSet0l3aIyGj4-Ik2gThfEfPxBIp.xml

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

resources/project/KAXfQgCar2Yb8zOxgvf9hdmLP1E/a8_DrWkhktqMMavtYBXIHucdGbAd.xml

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

resources/project/KAXfQgCar2Yb8zOxgvf9hdmLP1E/a8_DrWkhktqMMavtYBXIHucdGbAp.xml

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="1" type="DIR_SIGNIFIER"/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="Images" type="File"/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="Sandbox" type="File"/>

resources/project/WZRuNzqc-Db7NcQAZO8Y-R8U9cc/66WgGCcF5RIH9MCEgPmgjZK9k3Ud.xml

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

resources/project/WZRuNzqc-Db7NcQAZO8Y-R8U9cc/66WgGCcF5RIH9MCEgPmgjZK9k3Up.xml

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

resources/project/WZRuNzqc-Db7NcQAZO8Y-R8U9cc/AtMjXDrOSm8YDv3_4UFXiyrWqNEd.xml

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

resources/project/WZRuNzqc-Db7NcQAZO8Y-R8U9cc/AtMjXDrOSm8YDv3_4UFXiyrWqNEp.xml

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="1" type="DIR_SIGNIFIER"/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="InternalFiles" type="File"/>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<Info location="Root" type="EnvironmentCustomizations"/>

0 commit comments

Comments
 (0)