We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Based on the export to C, I think the MATLAB one should not be too hard.
The text was updated successfully, but these errors were encountered:
@bhamadicharef I am not sure this corresponds what you mean but you can use exported C model in matlab/simulink using coder.ceval.
code = m2c.export_to_c(estimator) with open("test.c", "w") as f: f.write(code)
//test.h #ifndef TEST_H #define TEST_H double score(double * input); #endif
% test_m.m function y = test_m(in_data) coder.cinclude('test.h'); y=0; y = coder.ceval('score', in_data); end
codegen test_m -args {dummy_data} test.c
test_m_mex(in_data)
Sorry, something went wrong.
Added into feature-request hub #490.
No branches or pull requests
Based on the export to C, I think the MATLAB one should not be too hard.
The text was updated successfully, but these errors were encountered: