How to deploy a Matlab app to iOS and Android?
226 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
daniel hennessy
el 11 de Abr. de 2013
Respondida: BHOOMIKA MS
el 18 de Oct. de 2024
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!
0 comentarios
Respuesta aceptada
Bill Chou
el 10 de Mzo. de 2017
One option is to use MATLAB Coder, which generates C code from your MATLAB algorithm. You can then integrate the generated C code into your iOS and Android apps. Here’s a webinar and example code that shows this workflow:
A few customers have tried this approach. In particular, Respiri created an Android and iPhone app for their wheeze detection product:
0 comentarios
Más respuestas (5)
Walter Roberson
el 11 de Abr. de 2013
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.
0 comentarios
saras
el 22 de Jul. de 2016
The following two products will allow you to generate code for mobile devices:
and
2 comentarios
Walter Roberson
el 22 de Jul. de 2016
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.
daniel hennessy
el 11 de Abr. de 2013
5 comentarios
Sven Mixer
el 10 de Abr. de 2014
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
el 9 de Mayo de 2021
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
el 18 de Oct. de 2024
[a, t]=accellog(m); Plot(t, a); legend('X','Y','Z'); xlabel('relative time (s)'); ylabel('acceleration (m/s^2);
0 comentarios
BHOOMIKA MS
el 18 de Oct. de 2024
[a, t]=accellog(m); Plot(t, a); legend('X','Y','Z'); xlabel('relative time (s)'); ylabel('acceleration (m/s^2);
0 comentarios
Ver también
Categorías
Más información sobre Android Devices en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!