필터 지우기
필터 지우기

I have used the Loop>>> txSigFOFDM = filtTx([txSigOFDM; zeros(L-1,1)]); why matlab shows an error?

조회 수: 1 (최근 30일)
txSigFOFDM = filtTx([txSigOFDM; zeros(L-1,1)]);
Error Message:
Array formation and parentheses-style indexing with objects of class 'dsp.FIRFilter' is not allowed. Use objects
of class 'dsp.FIRFilter' only as scalars or use a cell array.
Error in fofdmn1 (line 72)
txSigFOFDM = filtTx([txSigOFDM; zeros(L-1,1)]);

채택된 답변

Walter Roberson
Walter Roberson 2017년 10월 20일
Same reason as your other question: you are trying to use a syntax that is not supported in your R2015a version. You need to use step instead
txSigFOFDM = step(filtTx, [txSigOFDM; zeros(L-1,1)] )
You should be looking at the documentation for your version, not at the R2017b documentation.
  댓글 수: 5
David Webb
David Webb 2021년 4월 4일
Walter Roberson, Thats good. email me the code @ saadiboy881212@yahoo.com.
Thanks in Advance.@Walter Roberson
Walter Roberson
Walter Roberson 2021년 4월 4일
I can eat Baked Alaska. It is legal for me to eat Baked Alaska (and it is also enjoyable.)
I cannot eat the elm tree in front of my house. It is not legal for me to eat elm trees in my city: they are a protected species. (And there is also the problem that elm trees are mostly indigestible.)
Unfortunately, there is no Baked Alaska at my house. I have not seen Baked Alaska for about 35 years. The only place in the city that was thought just might still serve Baked Alaska, closed down about 7 years ago. In order to send you some Baked Alaska, I would have to hire someone to make some Baked Alaska in the first place.
The elm tree, on the other hand, drops its branches and generally makes a mess. I have some in the yard that I would be happy to get rid of. However, I can't send you any the elm tree: the city is worried about spreading Dutch Elm Disease, so I have to save the branches and wait for the city to collect them.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by