how to run .m file using uigetfile() in button callback

4 vues (au cours des 30 derniers jours)
Harish M Y
Harish M Y le 2 Août 2021
Commenté : Harish M Y le 2 Août 2021
Hi,
I want to the user to select the .m file required to run using the button function. I am trying this code.
Its displaying the error as "Error: File: RunLwrExtModeCal.m Line: 1 Column: 165
Invalid text character. Check for unsupported symbol, invisible character, or pasting of non-ASCII characters."
I am trying the code like this:
Please help me with this. Thanks in advance
[filename, pathname] = uigetfile('*.m', 'Pick a .m file');
run([pathname filename]);

Réponse acceptée

Chunru
Chunru le 2 Août 2021
Try the following:
run(fullfile(pathname, filename));
  3 commentaires
Chunru
Chunru le 2 Août 2021
Modifié(e) : Chunru le 2 Août 2021
print out pathname and filename or try debug mode to see what is wrong. Or show the .m file you picked and intended to run.
Harish M Y
Harish M Y le 2 Août 2021
Hey thanks, the code is working with run(fulfile(pathname,filename));
There was a problem with my code, now its corrected.
Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by