t = 0:0.1:10y = sin(0.225*t + pi / 70);plot(t,y)
y=@(t)(sin(0.225*t+pi/70));x=-10*pi:0.001:10*pi;plot(x,y(x));