Misam Mehmannavaz
Misam Mehmannavaz

Reputation: 156

How To Use Generated Matlab Code in Android?

I have generated MATLAB code than contains a lot of C codes and C/C++ headers.I don't know how to use this code with NDK in Android.

1-Should I change c codes for use in Android?

2-How to use this codes in Android Project?

3-Is there any tutorial or book to use generated code in Android Project?

Upvotes: 0

Views: 82

Answers (1)

Mahdi-Malv
Mahdi-Malv

Reputation: 19270

The android can interact with c/c++ code using JNI. Here are some links which may help you understand the Interaction between Native Code and Android Java Language.

Using C and C++ Code in an Android App with the NDK

Add native code to android

and so on...

Upvotes: 1

Related Questions