Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 3.2 KB

README.md

File metadata and controls

51 lines (37 loc) · 3.2 KB

Project0 Starter Code

Please see the project instructions located here.

Code overview

  • language.txt is a text file specifying the programming language in which the assignment is completed. This is the very first thing you should edit.
  • project0_py is a folder with starter code for completing the project in python.
    • project0_py/project0.py contains the function f in which your code must be written and complete the TODOs to make a contour plot.
  • project0_jl is a folder with starter code for completing the project in Julia.
    • project0_jl/project0.jl contains the function f in which your code must be written and complete the TODOs to make a contour plot.
  • localtest.py runs tests on project0_py.
  • localtest.jl runs tests on project0_jl.
  • make_submission.sh is a shell script to create the zip file for submission to gradescope (Unix).
  • make_submission_gitbash.sh is a shell script to create the zip file for submission to gradescope (Windows GitBash + 7-Zip).
  • make_submission.bat is a batch file to create a zip file for submission to gradescope (Windows PowerShell + 7-Zip).

Deliverables

Required installs for Windows only

Choose a programming language

First, pick either Julia1.9+ or Python3.9+ as a programming language. Depending on your choice, go to language.txt and change notalanguage to either julia or python.

Complete the required code

Second, if you chose Julia, go to project0_jl/project0.jl and complete the function f and the TODOs the generate a contour plot. If you chose Python, go to project0_py/project0.py and complete the function f and the TODOs the generate a contour plot.

Remember to install the packages listed at the top of your chosen file.

In Julia, use this reference for adding packages: https://docs.julialang.org/en/v1/stdlib/Pkg/

In Python, use this reference for adding packages: https://packaging.python.org/en/latest/tutorials/installing-packages/

For help making contour plots, please see this link for Julia, this link for Python, and this video tutorial for both Julia and Python.

Test your completed code

Third, if you chose Julia test your completed code by running: julia localtest.jl If you chose Python, test your completed code by running: python3 localtest.py

Create the submission

Fourth, create the zip file for your submission by running

  • On Unix: bash ./make_submission.sh
  • On Windows (GitBash + 7-Zip): bash ./make_submission_gitbash.sh
  • On Windows (PowerShell + 7-Zip): make_submission.bat

Submit on Gradescope

Finally, submit the created zip file project0.zip on Gradescope and submit a PDF containing your contour plot and your code to Project 0 (Writeup) on Gradescope.