필터 지우기
필터 지우기

Is it possible to migrate to MATLAB App Designer (.mlapp) using a properly structured .m file?

조회 수: 28 (최근 30일)
Hello,
I wonder if it is possible to migrate a properly structured .m file to App Designer. By proper I mean that it is completely okay to be used in App Designer because it was originally exported by App Designer's "Export to .m File" option.
It's actually a copy-past task but the App Designer's code section for the user interface related components is read-only. I need to remark that it is not migrating from GUIDE to App Designer, it is migrating from a .m file which is exported from App Designer, to App Designer's itself.
So, is there a resolution for this case?
I'd appreciate any assistance or guidance.
  댓글 수: 6
Rik
Rik 2023년 6월 23일
Just so you are aware: compiling a function to a standalone application for use the MCR is not exclusive to AppDesigner. If ditching that requirement solves your problem, you might want to look into that.
Ergin Sezgin
Ergin Sezgin 2023년 6월 23일
I must have missed that and will be checking if that helps. Thanks!

댓글을 달려면 로그인하십시오.

답변 (1개)

Manoj Mirge
Manoj Mirge 2023년 8월 9일
There is no easy way to import the exported "m" file into MATLAB App Designer. The "mlapp" file is a structure which contains metadata and XML files, whereas the "m" file contains only the code. In order to directly import the app file, the metadata and the XML files would be needed, which are not present in the "m" file.
If you want to convert the “m” file to executable file, you can use MATLAB Compiler to achieve the same instead of App Designer. You can convert the "m" file to executable using the "mcc" function. Please refer to below code to convert the "m" file to executable file:
mcc -m filename.m
You can refer to the attached link to read more about the “mcc” function:
Similarly, you can use the MATLAB Compiler GUI to convert the "m" file to executable.
Hope this helps.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by