comm.MIMOChannel Filter delay calculation
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to use the system object comm.MIMOChannel instead of mimochan.
The mimochan has a property called ChannelFilterDelay, which gives back numbers of delayed samples of this channel filter.
Here mey question: Did the system object comm.MIMOChannel also have a sample delay, and if yes: How can I compute it?
Or better how can I create channel models without delay.
Thanks a lot
0 comentarios
Respuesta aceptada
Yue Shang
el 11 de Sept. de 2013
Editada: Yue Shang
el 11 de Sept. de 2013
The comm.MIMOChannel and mimochan use the same algorithm to model the channel and can produce the same numeric result. So, they have the same "ChannelFilterDelay". But the System object usually offers better performance and supports code generation.
If you are using R2013a or a newer version, you can call the info method of the System object to obtain the channel delay information. For example,
>> h = comm.MIMOChannel;
>> info(h)
ans =
ChannelFilterDelay: 0
NumSamplesProcessed: 0
Otherwise, you could simply configure an equivalent mimochan object to obtain the information from its ChannelFilterDelay property.
1 comentario
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!