Code covered by the BSD License  

Highlights from
Additive Noise Channel

image thumbnail
from Additive Noise Channel by Ashwini Patankar
This function is the matlab implementation of Additive Noise Channel

through_anc.m
clear all;
close all;
clc;
v = 0:pi/15:20.*pi;
z = sin(v);
channel_op = additivenoise(z);
figure(2)
plot (v,z)
grid on;
figure(3)
plot(v,channel_op)
grid on

Contact us at files@mathworks.com