Matlab Coder, Compiler can't find "tmwtypes.h"
122 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, I got Matlab Code from the Neural Net Pattern Recognition Toolbox and I tried to generate C++ Code with the Matlab Coder. But when I select Static Library or Source Code, Atmel AVR(8-bit) as Device (for Arduino) and the Arduino AVR toolchain the Arduino IDE always returns:
sketch\generated_code\interface\_coder_NeuralNetwork_api.c:12:22: fatal error: tmwtypes.h: No such file or directory
#include "tmwtypes.h"
Why didn't the Matlab Coder create that Library?
1 Commento
A.H.T.Eranga De Silva
il 14 Gen 2021
Did you check the PacknGo feature in the Matlab coder?
Unless, do experience it please. I think that will solve your problem.
The PacknGo feature creates a folder containing all in one. Then try creating the project inside the PacknGo created folder.
Risposta accettata
Kai
il 7 Giu 2016
3 Commenti
Joaquin Ambia
il 27 Set 2017
There might be a few files with the same name "tmwtypes.h". To be safe, you should always use the one in: matlabroot\extern\include.
Più risposte (4)
may miao
il 9 Gen 2020
If anybody had problem in matlab:
c:\program files\matlab\r2019a\extern\include\matrix.h(683): fatal error C1083: Cannot open include file: “tmwtypes.h”: No such file or directory.
You can solve it in this way:
Find the matrix.h, row 683,change “ include<tmwtypes.h> into "include“tmwtypes.h”".
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!