Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
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)]);

Réponse acceptée

Walter Roberson
Walter Roberson le 20 Oct 2017
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 commentaires
David Webb
David Webb le 4 Avr 2021
Walter Roberson, Thats good. email me the code @ saadiboy881212@yahoo.com.
Thanks in Advance.@Walter Roberson
Walter Roberson
Walter Roberson le 4 Avr 2021
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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Statistics and Machine Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by