Hello .ipynb on the blog!

blog
jupyter
Author

Basics

Published

November 24, 2025

Just the first try of a notebook post.

#> Import libraries
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-np.pi, np.pi, 101)
y = np.sin(x)
plt.figure()
plt.plot(x,y)
plt.grid()