In [1]:
#%config InlineBackend.figure_format = 'svg'

In [2]:
plot(rand(30))
plot(rand(20))
grid()


  • vytvořím proměnné
    $u_1=\sin(2\pi f t)$

In [3]:
t=linspace(0,1,100)
u=sin(2*pi*1*t)
  • a nakreslím

In [4]:
plot(t,u)
grid(1)



In [4]:


In [4]: