How can I apply a trained Matlab neural network from C++ without call to Matlab?. I think maybe it is possible read all the variable values of a trained network and export it to a file, then knowing the internal data processing of the neural network program a function in C++ can read all this data (the training result), and when a user introduces his test data, then the function gives an answer. The signature of the function could be something like:
double estimate_frequency(<neural_network_config_file>, <user_params>) {
...
return frequency;
}
but all this without call any Matlab dll nor Matlab program. I think the evaluation process is simpler than the training process.
It is that possible?
Thanks!