Borrar filtros
Borrar filtros

How to do this in MATLAB

3 visualizaciones (últimos 30 días)
Saed
Saed el 24 de Mzo. de 2013
Hello,
I have a block of N binary phase shift keying (BPSK) symbols, each symbol with time Ts. How can I convert this block into continuous time domain? Is the following segment correct:
if true
t= 1:Ts:N*Ts;
x=2.*(randn(1,N)>0.5)-1;
xt=interp1(t,xCP,t,'linear');
end
Thanks

Respuestas (1)

Jan
Jan el 25 de Mzo. de 2013
It is hard to guess. You create "x", but use "xCP". You interpolate the values of xCP at the points "t", while the original values are available at the same points "t". Therefore the interpolation is equivalent to:
xt = xCP;
Is this your intention?

Categorías

Más información sobre PHY Components en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by