Skip to content

Commit

Permalink
re-add
Browse files Browse the repository at this point in the history
  • Loading branch information
kkappler committed Sep 8, 2023
1 parent 10f4555 commit 9412c04
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tutorials/placeholder.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"""
Placeholder for example
===========================
This example is a placeholder that uses the sphinx-gallery syntax
for creating examples
"""

import aurora
import numpy as np
import matplotlib.pyplot as plt

###############################################################################
# Step 1
# ------
# Some description of what we are doing in step one

x = np.linspace(0, 4 * np.pi, 100)

# take the sin(x)
y = np.sin(x)


###############################################################################
# Step 2
# ------
# Plot it

fig, ax = plt.subplots(1, 1)
ax.plot(x, y)

0 comments on commit 9412c04

Please sign in to comment.