Filter löschen
Filter löschen

Error: Cast between fixpt and floating point type is not supported

1 Ansicht (letzte 30 Tage)
Hi there,
I got a problem. The program successfully passed the fixed point conversion, but I still got the following while I converting it to HDL code.
Error: Cast between fixpt and floating point type is not supported
"A cast between fixpt and floating point type is not supported, at
Function 'eml_fi_checkforntype' (#14.947.965), line 26, column 25
Function 'fi_impl' (#4.10494.10558), line 274, column 15
Function 'fi_impl' (#4.2380.2450), line 79, column 15
Function 'rgb_fixpt' (#1.2827.2957), line 77, column 23."
But I do not know what Function eml_fi_checkforntype,fi_impl are.
I just converted my code'rgb'.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 14 Mär. 2018
Somewhere in your code you have a call to double() or single() . That is not permitted in code that is going to be used for HDL, because HDL seldom has floating point cores (floating point takes large die areas.) Your code should be using fi() class not double()
  9 Kommentare
Yu Chen
Yu Chen am 15 Mär. 2018
In the end I found that the parameters of the line were wrong.
When I am modified, I can execute
Thank you very much for your help and suggestions
Walter Roberson
Walter Roberson am 15 Mär. 2018
I did wonder about those, but I thought perhaps that since they were output by the fixedpoint advisor that they were okay...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by