home › Forums › # Technical Support › Converting Matlab .fis file to C code › Reply To: Converting Matlab .fis file to C code
November 16, 2016 at 18:25
#2279
Keymaster
Hi,
thank you for your posts and kind words.
Mash to convert fis to C++ you can do:
//Import from FIS
Engine* engine = fl::FisImporter().fromFile("/path/to/yourfile.fis");
//Export to C++ file
fl::CppExporter().toFile(engine, "/path/to/yourfile.cpp");