How to deploy a Matlab app to iOS and Android?
古いコメントを表示
I'm new to Matlab but I'm working with a developer that has an algo that is written in Matlab. I want to port this application to iOS & Android without having to rewrite the algo in Java , C etc. This application will be packaged with other C code. Will Matlab compiler achieve this purpose? Are there any gotchas with Matlab compiler once it comes time to deploy on iOS and android ? e.g. unsupported functions etc - thanks!
採用された回答
その他の回答 (5 件)
Walter Roberson
2013 年 4 月 11 日
1 投票
The MATLAB Compiler will not do this for you, and that includes Java Builder. You need MCR (MATLAB Component Runtime) which requires MS Windows, Linux, or OS-X to run on.
saras
2016 年 7 月 22 日
1 投票
The following two products will allow you to generate code for mobile devices:
and
2 件のコメント
Walter Roberson
2016 年 7 月 22 日
Notice that those two require that you use Simulink to control the generation. Those two are not general purpose "deploy MATLAB code to Android / iOS": you have to live with the various restrictions of Simulink.
ugur arslan
2020 年 12 月 11 日
thanks
daniel hennessy
2013 年 4 月 11 日
0 投票
5 件のコメント
Walter Roberson
2013 年 4 月 11 日
Does the code use any of the toolkits? Generally speaking, what kind of processing is it doing?
Sven Mixer
2014 年 4 月 10 日
I've got similar question and found this topic very useful, I am using Image Processing toolkit. I am interested how I can port MATLAB code to iOS and Android? Is there any tool for it? I've heard of MATLAB Coder, do someone has experience with it? Will it solve my problem by generating C code and C code I can insert into iOS (as Objective C++).
Walter Roberson
2014 年 4 月 10 日
If what you are doing at the MATLAB level is pure calculation without display or reading or writing images or frame capture, then MATLAB Coder can handle most of the Image Processing Toolkit routines for that these days.
Any graphics or file reading or writing you would have to handle at the C++ level.
Sven Mixer
2014 年 4 月 10 日
Thank you very much in such a prompt and clear answer. Now I am sure I've understood it right.
In what means can MATLAB Coder product can be obtained for probation and trial? Can we get Price offer on that?
My main question is here: http://www.mathworks.se/matlabcentral/answers/125313-port-matlab-m-code-to-objective-c
NICOLE MIN
2021 年 5 月 9 日
i have a function code created from GUI, how can i use the Matlab code to convert my function script to C code. i ve tried several times but failed, i have these error

BHOOMIKA MS
2024 年 10 月 18 日
0 投票
[a, t]=accellog(m); Plot(t, a); legend('X','Y','Z'); xlabel('relative time (s)'); ylabel('acceleration (m/s^2);
BHOOMIKA MS
2024 年 10 月 18 日
0 投票
[a, t]=accellog(m); Plot(t, a); legend('X','Y','Z'); xlabel('relative time (s)'); ylabel('acceleration (m/s^2);
カテゴリ
ヘルプ センター および File Exchange で Android Devices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!