7. Create a sin wave and analyze the effect of adding noise to it.

 

Create a sin wave and analyze the effect of adding noise to it.

// Create a sin wave and analyze the effect of adding noise to it.

subplot(3,1,1);
noisegen(.5,30,1);
x=-5:.01:35;
y=feval(x,Noise);
plot(x,y);

subplot(3,1,2);
//simple plot
B=5*sin(x);
plot(B);

subplot(3,1,3);
C=y.*B;
plot(C);
// Output
Create a sin wave and analyze the effect of adding noise to it.
                    Create a sin wave and analyze the effect of adding noise to it.

Comments

Popular posts from this blog

Scilab 2025.0.0 Install File

3. Program to generate FM Signal and Analyze the effect of increasing modulation index for each modulation technique.