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

조회 수: 5 (최근 30일)
Harish M Y
Harish M Y 2021년 8월 2일
댓글: Harish M Y 2021년 8월 2일
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]);

채택된 답변

Chunru
Chunru 2021년 8월 2일
Try the following:
run(fullfile(pathname, filename));
  댓글 수: 3
Chunru
Chunru 2021년 8월 2일
편집: Chunru 2021년 8월 2일
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 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개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by