how to run .m file using uigetfile() in button callback
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Harish M Y
am 2 Aug. 2021
Kommentiert: Harish M Y
am 2 Aug. 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]);
0 Kommentare
Akzeptierte Antwort
Chunru
am 2 Aug. 2021
Try the following:
run(fullfile(pathname, filename));
3 Kommentare
Harish M Y
am 2 Aug. 2021
Hey thanks, the code is working with run(fulfile(pathname,filename));
There was a problem with my code, now its corrected.
Thank you
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Debugging and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!