Skip to content
Snippets Groups Projects
Commit 8e8e5fa9 authored by Sathish Kumar RK's avatar Sathish Kumar RK
Browse files

fix matplolib import error

parent 2c82a386
No related branches found
No related tags found
1 merge request!70add solutions to Sommerfeld exercises
Pipeline #28787 passed
......@@ -130,6 +130,8 @@ CV = (dEplus - dEmin) / (2*dT);
1.
```python
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-1, 1, 100)
fig, ax = plt.subplots(figsize=(7, 5))
ax.plot(x, x, 'b')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment