I used a sample code from mathworks website to integrate a MATLAB code with C/C++ by a link!
As you seen in the code, there is header file as:
#include "engine.h"
In Linux (Ubuntu), I ran:
g++ engdemo.cpp -o mycpp
command to create an executable program, but the below fatal error occurred:
engdemo.cpp:14:20: fatal error: engine.h: No such file or directory, compilation terminated.
How can i solve this fatal error?