Verfasst am: 26.03.2020, 15:59
Titel: ??? Type mismatch: embedded.fi
Hallo,
ich bin dabei matlab code in C code zu konvertieren und benutze dafür matlab coder.
Zudem möchte ich in fixed point konvertieren.
Ich erhalte folgende Fehlermeldung:
Zitat:
??? Type mismatch: embedded.fi {sfix48_En30}[: ? x : ?] ~= embedded.fi {sfix32_En31}[: ? x : ?].
Error in ==> start_fixpt Line: 95 Column: 9
Code generation failed: View Error Report
Den Code Teil hat Matlab selber erstellt und lautet:
Code:
function c = fi_div(a,b)
coder.inline( 'always' );
if isfi( a ) && isfi( b ) && isscalar( b )
a1 = fi( a, 'RoundMode', 'fix' );
b1 = fi( b, 'RoundMode', 'fix' );
c1 = divide( divideType( a1, b1 ), a1, b1 );
c = fi( c1, numerictype( c1 ), fimath( a ));
else
c = a / b;
end end
fi_toint is ebenfalls von Matlab erstellt und denke ich hier nicht von Belang, trotzdem zur Vollständigkeit:
Code:
function y = fi_toint(u)
coder.inline( 'always' );
if isfi( u )
nt = numerictype( u );
s = nt.SignednessBool;
wl = nt.WordLength;
y = int32( fi( u, s, wl, 0, hdlfimath ));
else
y = int32( u );
end end
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.