My First Post!!
I’m an awesome PIC16B student and I am running Jekyll!
I am also learning about markdown!
I can do lists!
- one
- two
- three
And math!
\(\oint_V f(s) \,ds\)
And I can insert python-styled code!
def f(x):
"""
A cool function that multiples an input x by 2.
"""
return 2*x
I can also insert images!
And plots!
import numpy as np
from matplotlib import pyplot as plt
x = np.linspace(0, 2*np.pi, 1001)
y = np.sin(x)
plt.plot(x, y)
Written on March 31, 2022