필터 지우기
필터 지우기

How to create dialog boxes to select the file and display output ?

조회 수: 2 (최근 30일)
sandeep
sandeep 2011년 3월 20일
Hello all, I am trying to create a standalone application which opens dialog boxes to select the values and displays output. when I am trying to create dialog boxes using the following code, I am getting errors.
function trial8
prompt1={'Enter input file name (without extension [.mat]): '};
fname1 = inputdlg(prompt1); prompt2=('choose spanning window 9 or 11 (without extension [.mat]):');
fname2=inputdlg(prompt2);
[NUM,TXT,RAW]=xlsread('2.csv')
[row,col] = size(NUM);
I want the dialog box to ask for the file selction and display the corresponding output. Can anyone please help me out. Regards,

채택된 답변

Paulo Silva
Paulo Silva 2011년 3월 20일
You got the line wrong
[NUM,TXT,RAW]=xlsread('2.csv')
You ask the user for the name of the file so you should use that input
[NUM,TXT,RAW]=xlsread([char(fname1) '.csv'])
  댓글 수: 5
sandeep
sandeep 2011년 3월 21일
Thank you.
I have tried char(fname2) as following:
Z2=smooth(data,char(fname2),'rloess');
I am experiencing the following error:
??? Error using ==> smooth at 188
SMOOTH: Unrecognized method.
Error in ==> trial8 at 37
Z2=smooth(data,char(fname2),'rloess');
Please help me out.
Regards,
sandeep
sandeep 2011년 3월 21일
Sorry for the above comment.
Thanks a lot for the reply. I have used str2num and it is working good.
regards,

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by