I am looking for procedure or suggestions if this is do able or not.
I have source files or (object code) which is compiled on a MATLAB environment using embedded coder. Now I want to bring those source code into Python and perform a code performance test based on input test case.
For example: My object code contains a logic: Like, If int a = 7; int b 8; then int c = a+b;
Now I have to test the above logic using specified test case to really see my object code is doing what it is really designed for..
So, Is there any procedure or material available for me to learn on how to import object code/source files into Python and perform testing?
Thank.