We have moved to @ Placement Papers Hub !! Visit our new website here for more..

MATLAB EMPTY SPACE CODE

MATLAB EMPTY SPACE CODE


clc;
clear all;
close all;
t=0:0.1:10;
y =sin(t);
figure(1);
plot (t,y);
y=sin(t) + sin(3*t)/3;
figure(2);
plot(t,y);
y= sin(t)+sin(3*t)/3+sin(5*t)/5+sin(7*t)/7+sin(9*t)/9;
figure(3);
plot(t,y);