HOME/Articles/

matplotlib example sample basic (snippet)

Article Outline

Python matplotlib example 'sample basic'

Modules used in program:

  • import numpy as np

python sample basic

Python matplotlib example: sample basic

import numpy as np
from figure import Figure

x = np.linspace(0, 2 * np.pi, 1001)
y = np.sin(3 * x)

fig = Figure()
fig[0].plot(x, y)
fig.show()