MANE 3351 - Manufacturing Engineering Analysis
Laboratory 3 Hints
It would appear that some additional information would be helpful for completing the third laboratory assignment.
GitHub
You must use the laboratory assignment provided by Dr. Timmer to create your lab 3 repository and copy the location. The Laboratory link information will be sent to you via an email from Blackboard and will also be available on the course Blackboard site.
Start your physical Raspberry Pi or Raspberry Pi VM and start a terminal window. In the terminal window, type git clone address, where address is the location generated by accepting the laboratory three assignment.
After creating the new repository which adds a directory to your home location, cd into the repository name.
Step 1 - Your Name
Edit the first cell, a Markdown cell, and enter your name
Step 2 - Scalar Function
Define a function to return the value of the exponential pdf and test your function. A very similar problem was demonstrated in the Lecture 12 - September 29 Jupyter Notebook. Make sure to include the import for the Math library.
Step 3 - Vectorize function
The largest hint is to review the Lecture 11 - September 27 Jupyter Notebook. There is code in cell three to create the array x for testing the vectorized function.
Step 4 - Uploading Assignment
Please make sure to save your final edits in Jupyter Notebook and close Jupyter Notebook. You should still be operating in the repository directory of the terminal window. To upload your assignment, you must complete three steps. First, issue the command (in the repository directory) git add -A. The second command is git commit -m "submission message". The final command is git push.
Executing these three commands will upload everything so your submission can be evaluated.