i am asking the user for a file and i wana transform that file into a matrix, i dont know how many lines or colums there is i only know that is a square matrix and that the numbers are seperated with space bar

조회 수: 2 (최근 30일)
This is my code right now. My code only saves the last line of the file and saves it in an array aline. (I cannot use load or dlmread().
nme = input('nome do ficheiro >','s');
fid = fopen(nme,'r');
if fid == -1
disp('ficheiro nao encontrado');
else
while feof(fid)==0
aline=fgetl(fid);
end
closeresult=fclose(fid);
if closeresult==0
disp('ficheiro fechado com sucesso')
else
disp('erro')
end
end

채택된 답변

Jeremy Hughes
Jeremy Hughes 2018년 11월 27일
T = readtable(filename,'Delimiter',' ');
A = T.Variables
  댓글 수: 3
Jeremy Hughes
Jeremy Hughes 2018년 11월 28일
Maybe I missed part of this conversation. I didn't see a reference to his restrictions. There are restrictions when working on embedded systems.
If there are some limitations, I don't know if my solution will work in that context.
Image Analyst
Image Analyst 2018년 11월 28일
편집: Image Analyst 2018년 11월 28일
In his post at the top, it says
"(I cannot use load or dlmread()."
Usually such things are done by professors who want students to do things manually rather than use handy built-in functions because they want them to do it the long way, to learn it better I guess.

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

추가 답변 (1개)

Image Analyst
Image Analyst 2018년 11월 27일
Try this:
% 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 ~exist(startingFolder, 'dir')
% 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)
fid = fopen(fullFileName,'rt');
lineCounter = 1;
if fid == -1
disp('ficheiro nao encontrado');
else
while feof(fid)==0
thisLine = fgetl(fid);
if ischar(thisLine)
allLines{lineCounter} = thisLine;
end
lineCounter = lineCounter + 1;
end
closeresult=fclose(fid);
if closeresult==0
disp('ficheiro fechado com sucesso')
else
disp('erro')
end
end
celldisp(allLines);

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by