Long time no post here.
I have a matlab file (.m). I wish to create a stand alone executable that does not require the target computer to have MATLab installed, nor do I want to include the MCR package.
I can use "mcc -m file.m" to create an .exe that works just fine on my computer, but not on ones that do not have MCR.
I was trying to find a way to convert the code over to C++. It seems I manage to create C source files (.c and .obj), but tbh Idk what to do with these.
Any help is appreciated..