Eugeniy E. Mikhailov office hours on Wednesdays at 2pm.
If you want to meet with me outside of office hours, schedule an appointment
I am available at my office SmallHall 253, or in the superposition of my labs 032, 034, or 065.
Greg Bentsen office hours on Tuesdays at 10am in Small Hall 153
Sam Bevins sjbevins@wm.edu office hours on Tuesdays and Thursdays 1-2pm in Small Hall 260
Homework will be posted at Gradescope, feel free to reuse the assignments tex files (posted below) during your report preparation.
Have a look at the sample homework report and steps for its preparation.
Instructions available in pdf and tex format. Feel free to reuse parts of the tex file for your reports.
Instructions available in pdf and tex format. Feel free to reuse parts of the tex file for your reports.
You can convert the data file in relevant python variables using the following code
import numpy as np
# Load the dataset
data = np.loadtxt('hw02dataset.csv', delimiter=',', skiprows=1)
# Extract voltage and current columns
V = data[:, 0]
I = data[:, 1]Instructions available in pdf and tex format. Feel free to reuse parts of the tex file for your reports.
The midterm 1 assignment is available. The gradescope will have 3 corresponding parts for code, written part for problem 7, and user manual.
zip archive of templates for code preparation, submit your solutions to Gradescope in similarly organized zip archive
The deadline for written part is Sunday Oct 4th at 11:59pm, it will be followed by in-class portion on Monday Oct 5th.
Slides in html and markdown formats
Extra file:
Using python and an editor combo
Slides in html and markdown formats
Code archive: lab03_code.zip
Slides in html and markdown formats
Code archive: lab04_code.zip
Slides in html and markdown formats
Code archive: lecture04_code.zip
Slides in html and markdown formats
Code archive: lab05_code.zip
Root finding algorithms
Numerical integration