Tip
Whatever you don't understand, look omline or ask your friend
Clone the repository
git clone https://github.com/VicTheM/matlab_coding_competition
Move into project directory
cd matlab_coding_competition
Create a new branch for yourself
git checkout -b <yourFirstName>
Create your calculator app and add it
git add -A
Commit the change
git commit -m "Calculator app completed"
Push the code to your branch
git push -u origin <yourFirstName>
Create a pull request on github for me to merge the code with the main branch
Note
If you want to see other people code that has not been merged to the main branch, checkout their own branch on github. if you don't understand ask google
To run and test other people app, run the installation file (the one ending with .mlappinstall) on matlab. You can do this by clicking the install package
on the top left corner of matlab window
To make your app installable, package it by clicking the package app
on the top left corner of the screen.
your simple calculator program should be uploaded in a folder named calculator<YourFirstName>
ie: calculatorVictory