I am working on small project, part of it is quit away from my field, and I don't know if I can do it with matlab.
this part is related to dealing with txt files
it is simply reading line by line from the attached file q1.txt and printing the 1st line on screen, then writing the response of the user will be either a number or group of letters such as 100 , yes, no, up , down
and based on the response the program is supposed to show certain infromatino from the secnod txt file a1.
is there any way to achive that using matlab?

 채택된 답변

Image Analyst
Image Analyst 2020년 5월 30일
편집: Image Analyst 2020년 5월 30일

0 개 추천

Try this:
promptMessage = sprintf('Select your text file on the next dialog box.');
titleBarCaption = 'Continue?';
buttonText = questdlg(promptMessage, titleBarCaption, 'OK', 'Cancel', 'OK');
if contains(buttonText, 'Cancel', 'IgnoreCase', true)
return;
end
% Have user browse for a file, from a specified "starting folder."
% For convenience in browsing, set a starting folder from which to browse.
startingFolder = pwd; % or 'C:\wherever';
if ~isfolder(startingFolder)
% If that folder doesn't exist, just start in the current folder.
startingFolder = pwd;
end
% Get the name of the file that the user wants to use.
defaultFileName = fullfile(startingFolder, '*.txt');
[baseFileName, folder] = uigetfile(defaultFileName, 'Select a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
% Open the file for reading in text mode.
fileID = fopen(fullFileName, 'rt');
% Read the first line of the file.
textLine = fgetl(fileID);
lineCounter = 1;
while ischar(textLine)
userPrompt = sprintf('%s (type only Enter to quit now): ', strtrim(textLine));
userResponse = input(userPrompt, 's');
% Bail out if they just typed Enter.
if isempty(userResponse)
break;
end
% Print out user's response.
fprintf('You entered %s.\n', userResponse);
% Read the next line.
textLine = fgetl(fileID);
lineCounter = lineCounter + 1;
end
% All done reading all lines, so close the file.
fclose(fileID);

댓글 수: 3

Abdulrahman Odhah
Abdulrahman Odhah 2020년 5월 30일
편집: Abdulrahman Odhah 2020년 5월 30일
That is a perfect code, Thank you very much, I didn't even know this technique in matlab.
I am just wondering if I can accumulate the user responses in a column vector to be called later on or to be used in looping in the next steps of the program?
Also, one more thing, how can I make the script above as a function to be called whenver needed ?
Thanks in advance.
Index the variable with the loop counter
userResponse{lineCounter} = input(userPrompt, 's');
Abdulrahman Odhah
Abdulrahman Odhah 2020년 5월 30일
Perfect, thanks

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Import and Export에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by