필터 지우기
필터 지우기

comm.MIMOChannel Filter delay calculation

조회 수: 2 (최근 30일)
Mehly
Mehly 2013년 9월 10일
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

채택된 답변

Yue Shang
Yue Shang 2013년 9월 11일
편집: Yue Shang 2013년 9월 11일
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
Mehly
Mehly 2013년 9월 12일
편집: Mehly 2013년 9월 12일
Hi thank you for your answer, I have to update from R2012a to R1013a or newer, because I get a "0x0 struct" at the moment.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Filter Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by