How to run Matlab code on an Android device?

前端 未结 2 1567
轮回少年
轮回少年 2020-12-09 13:32

I would like to run Matlab code on an Android device. There is the JAVA Builder in Matlab, which can create Java classes from the M-Files. But it requires a MatlabRunTime to

相关标签:
2条回答
  • 2020-12-09 13:44

    Try out an app called Addi. It does a lot and is getting better.

    0 讨论(0)
  • 2020-12-09 13:58

    It's not possible to use any of the deployment products (including MATLAB Compiler and MATLAB Builder for Java) to run MATLAB code on Android. The deployed components you get from any of those products depend on the MATLAB Compiler Runtime, which has a much larger footprint than an Android device could handle.

    You could consider either

    1. Writing an app that connects, as @Oli suggested, to MATLAB code (or deployed MATLAB code) running somewhere on a server
    2. Using MATLAB Coder, which can convert a subset of the MATLAB language into C code that could be integrated into your app.
    0 讨论(0)
提交回复
热议问题