Filter löschen
Filter löschen

How to assign the number of filled columns of a text file as the value of a variable

2 Ansichten (letzte 30 Tage)
Hello,
I am trying to open the file nt.txt, with the goal of assigning the number of columns to the variable nu. Right now, I have the following code:
fid=fopen('E:\A\nt.txt');
g = textscan(fid,'%d','delimiter','\n');
nu=length(g)
fclose(fid)
However, it does not seem to work. Could someone help me?
Best regards,
Hugo

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Sep. 2020
detectImportOptions() might be your easiest method.
Otherwise,
fid = fopen('E:\A\nt.txt');
while true
thisline = fgetl(fid);
if ~ischar(thisline); break; end %end of file
thisline = strtrim(thisline);
if ~isempty(thisline); break; end %found a line
end
fclose(fid);
if ~ischar(thisline)
nu = 0;
else
nu = length(regexp(thisline, '\S+', 'split'));
end
This code assumes that columns are delimited by whitespace (otherwise your %d format would have failed).
The code looks for the first line of the file that contains something that is not whitespace, splits it into fields, and assumes that the number of columns is however many fields were found.
If the file has no non-empty lines, then nu is assigned 0.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by