clc
clear all
close all
x=-pi:0.01:pi;

for i=19
for j=1:5
y=sin(j*x);
plot(x,y)
end
subplot(3,3,i)
end