i have a matlab file with extension .MLAPP. i am not able to open it. does anyone knows the possible problems?

47 views (last 30 days)
how to open mlapp file. file is attached below
  3 Comments

Sign in to comment.

Answers (1)

Ameer Hamza
Ameer Hamza on 22 Apr 2018

It is a MATLAB App designer file. It will open in MATLAB R2016a or later. You must be using an older version of MATLAB.

  2 Comments
Umair Mughal
Umair Mughal on 11 May 2020
I have the same problem... Before that I faced the issue with .m extension, it was not opening in MATLAB directly from file explorer; it gets fixed by using registryfix provided by some link. The infomation of this fix is here:
% associateFiles(action, extList, fileStr)
%
% Makes a registry files that can be used to set correct file associantions on
% a windows platform. The following MATLAB file extensions are supported:
% .m, .mat, .fig, .mexw32, .mexw64, .p, .mdl, .mdlp, .slx, .mldatx, .req,
% .sldd, .slddc, .slxp, .sltx, .mn, .mu, .muphlp, .xvc, .xvz, .ssc, .mlapp,
% .mlappinstall, .mltbx, .mlpkginstall, .mlprj
%
% INPUT:
% action - optional string.
% * 'add' (default) adds/rewrites the MATLAB file association registry
% keys for this version.
% * 'delete' deletes the MATLAB file association registry entries for
% ALL versions of MATLAB (including "old style" ones)
% * 'deleteadd' is the same as 'delete' followed by 'add'
% extList - optional string or cell array of strings containing the file
% extensions that should be associated with this version. Default is
% all MATLAB file extension (see above).
% fileStr - optional string with the name of the registry file to be written
% (possibly including path). Default is the file
% 'MatlabFileAssocFix.reg' in the current directory.
%
% USAGE:
% 1) Run with desired options (see above). A registry file should have been
% created.
% 2) Exit all running instances of MATLAB.
% 3) Make a backup copy of the windows registry if you need to restore the
% changes, see https://support.microsoft.com/en-us/kb/322756
% 4) Double click on the created file (possibly need to enter a password) and
% confirm.
% 5) Restart Windows (or explorer.exe).
% 6) The MATLAB files should now be associated with the MATLAB version that the
% registry file was created in and e.g. m-files should be opened in an
% already running instance of MATLAB.
%
% EXAMPLES:
% * associateFiles('deleteadd') - Makes a registry files that deletes all
% previous MATLAB file association registry keys and write new ones that
% associates all MATLAB files with the MATLAB version that the registry file
% was created in.
% * associateFiles('', {'.m', '.mat', '.fig'}, 'myFile') - Makes a registry file
% "myFile.reg" that associates m-, mat- and fig-files with the MATLAB version
% that the registry file was created in.
%
% VERSION 1.0
So, according to this, I should have my extension .mlapp fixed; but still it's not working from file explorer...
xingxingcui
xingxingcui on 6 Feb 2024
Edited: xingxingcui on 6 Feb 2024
Note:MATLAB online can't open .mlapp file directly(double click icon)! You should use command "appdesigner" in command window,and then open the .mlapp file.
  • App Designer is only available in Google Chrome and Microsoft Edge

Sign in to comment.

Categories

Find more on File Operations in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!