-
Notifications
You must be signed in to change notification settings - Fork 28
Alexis (Project 1) #144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: contributed-notebooks
Are you sure you want to change the base?
Alexis (Project 1) #144
Conversation
First week for Fall 2023
Finalize material for class 2
Ready for class 3
Finished Chapter 4 linear algebra
Chapter 5 notebook
Ready to test Chapter 6 in Colab
Fixed image link in Chapter6
Updated Chapter 6 image link
Final updates to Chapter 6
Added Problem Set 1
Updated Problem Set 1
Updates PS2 and PS3
Updated contributed notebooks and project description
AL Semester Project - Edited Notebook
|
Please delete the file in the 'contrib' folder. Rename the file in the 'contrib-dev' folder to be the same name as the original file (before edits). |
adowling2
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make the requested changes and reupload
| "\n", | ||
| "Bingxin Yang [email protected]\n", | ||
| "\n" | ||
| "Bingxin Yang [email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should add "Edited by [your name and email] (Fall, 2023)"
| " result,error = integrate.quad(lambda E: 2*pi*(1/(pi*R*T[i]))**1.5*E**0.5*np.exp(-E/(R*T[i])),0,25)\n", | ||
| " I.append(result)\n", | ||
| " result,error = integrate.quad(lambda E: 2*pi*(1/(pi*R*T[i]))**1.5*E**0.5*np.exp(-E/(R*T[i])),low,upp)\n", | ||
| " f.append(result)\n", | ||
| "\n", | ||
| " ### END SOLUTION\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check all "### END SOLUTION ###" are complete. This one is missing the trailing "###"
| "plt.tick_params(direction=\"in\",top=True, right=True) #Major tick direction: in\n", | ||
| "plt.tick_params(which=\"minor\",direction=\"in\",top=True, right=True) #minor tick direction: in\n", | ||
| "plt.xlabel('Number of Midpoint Rule Rectangles',fontsize=16, fontweight = 'bold')\n", | ||
| "plt.ylabel('Difference Between Midpoint \\nRule and Gauss Quadrature \\nIntegral Results',fontsize=16, fontweight = 'bold')\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the y-axis label to be shorter, such as "f_{mid}(x) - f_{quad)(x)". You also do not need a legend on this plot because the information is redundant with the title and x-axis. For the title, try "Comparison of Midpoint and Quadrature Rules"
@adowling2