How can I sample a signal after it goes through a communication channel?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Connie Dubh
el 30 de Ag. de 2020
Respondida: Pratyush Roy
el 2 de Sept. de 2020
I'm new to Matlab and need help sampling a linear time-variant filter channel.
The signal
goes through a communication channel with attenuation and multipath fading modelled by
, in which L is the number of paths, α is the attenuation in each path and n is noise added to the signal in the channel.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/353531/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/353534/image.png)
How can I sample that using
, given that
is the sampling frequency?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/353537/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/353540/image.png)
0 comentarios
Respuesta aceptada
Pratyush Roy
el 2 de Sept. de 2020
Assuming that the mathematical form of r(t) is known, the following code snippet will generate a sequence of sampled points from the signal at a sampling rate of Ts:
t = t_start:Ts:(t_end-Ts); %t_start and t_end are the instances of beginning and ending of r(t) respectively.
r_sampled = r(t);
You can go through the following documentation for further help:
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with DSP System Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!