how to run .m file using uigetfile() in button callback
    4 次查看(过去 30 天)
  
       显示 更早的评论
    
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 个评论
采纳的回答
  Chunru
      
      
 2021-8-2
        Try the following:
run(fullfile(pathname, filename));
3 个评论
  Harish M Y
 2021-8-2
				Hey thanks, the code is working with run(fulfile(pathname,filename));
There was a problem with my code, now its corrected. 
Thank you
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


