How do to fix this invalid data type error?

8 Ansichten (letzte 30 Tage)
Christopher Resuello
Christopher Resuello am 17 Apr. 2024
Kommentiert: Taylor am 17 Apr. 2024
Hi,
I have an issue with this data type error and not quite sure what the problem is. The reset of the code is designed for a filter, and had it exported.
Invalid data type. First and second arguments must be numeric or logical.
Error in conv (line 43)
c = conv2(a(:),b(:),shape);
Error in FDM_17ES04 (line 88)
DSBSC_BPF1=conv(BPF1,Xfdm);

Akzeptierte Antwort

Taylor
Taylor am 17 Apr. 2024
Either a, b, BPF1, or Xfdm is not a numeric or logical data type. You can verify this by using isnumeric and islogical.
  3 Kommentare
Christopher Resuello
Christopher Resuello am 17 Apr. 2024
I found the issue, the filter is assigned as an object rather than array. Thanks for the tip
Taylor
Taylor am 17 Apr. 2024
Yes. conv requires the first two inputs to be either numeric or logical types.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Floating-Point to Fixed-Point Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by