Difference between revisions of "EGR 103/Spring 2023/Lab 12"
Jump to navigation
Jump to search
(Created page with "== Assignment == You will be writing functions to calculate estimates of derivatives and integrals for data sets. Along with the lecture notes and lab handouts, see Numeric...") |
|||
Line 3: | Line 3: | ||
The assignment will be submitted to Gradescope. You do not need to upload your code to Sakai or do anything with Connect. Note that this is an individual assignment! | The assignment will be submitted to Gradescope. You do not need to upload your code to Sakai or do anything with Connect. Note that this is an individual assignment! | ||
+ | |||
+ | == Hint == | ||
+ | See [https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.cumulative_trapezoid.html#scipy.integrate.cumulative_trapezoid scipy.integrate.cumulative_trapezoid] for a simple way to do the trapezoidal rule integration in one line of code! |
Latest revision as of 15:44, 6 April 2023
Assignment
You will be writing functions to calculate estimates of derivatives and integrals for data sets. Along with the lecture notes and lab handouts, see Numerical Differentiation and the Google Colab File
The assignment will be submitted to Gradescope. You do not need to upload your code to Sakai or do anything with Connect. Note that this is an individual assignment!
Hint
See scipy.integrate.cumulative_trapezoid for a simple way to do the trapezoidal rule integration in one line of code!