soobinrho / college-programming

Codes for my college programming.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Coursework Examples

Calculus II, Summer 2022 [Writeup Example]

A course on differentiation, integration, linear systems, infinite integrals, and infinite series.

Computer Science I, Summer 2022 [Python Jupyter Notebook Example]

A course on basic programming with Python.

# When I was writing a paper for my Calculus II class,
# I happened to be in a situation where
# I had to draw a right-angle triangle
# to demonstrate how trigonometric substitution
# for integration works. Using Matplotlib and seaborn,
# I was finally able to draw a right-angle triangle,
# but it took me around five hours to do that.

# That's why I chose to write this
# `Graph_Right_Angle_Triangle` class. I wanted
# to write a wrapper for Matplotlib and seaborn
# such that I can draw a right-angle triangle
# easily and quickly, and that's what I did.

# Making an instance and calling .show() to graph the triangle.
triangle_1 = Graph_Right_Angle_Trinalge(len_adjacent=12, len_opposite=12)
triangle_1.show()

# Graphing another instance.
triangle_2 = Graph_Right_Angle_Trinalge(len_adjacent=12, len_opposite=7)
triangle_2.show()

output-3-1 output-3-2


Computer Science II, Summer 2022 [Java Example]

A course on basic programming with Java.




About

Codes for my college programming.

License:MIT License


Languages

Language:Jupyter Notebook 52.4%Language:TeX 21.3%Language:Java 20.6%Language:C++ 4.1%Language:HTML 0.6%Language:Python 0.4%Language:QMake 0.2%Language:CSS 0.1%Language:JavaScript 0.1%Language:TypeScript 0.1%Language:Makefile 0.0%Language:Shell 0.0%