필터 지우기
필터 지우기

Array in loop - Index exceeds the number of array elements (3) - problem

조회 수: 1 (최근 30일)
Saud Alfalasi
Saud Alfalasi 2021년 2월 20일
댓글: Walter Roberson 2021년 2월 21일
R = string(data{:});
conf_val = [R(1) "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12" "13" "14" "15" "16" "17" "18" "19" "20" "21" "22" "23" "24" "25" "26" "27"];
for ii=1:27
if isempty(R(ii))
x = "nill";
else
x = R(ii);
end
text_str{ii} = ['Confidence: ' convertStringsToChars(x),'%s' '%'];
end
data = textscan(fileID,'%s');
fclose(fileID);
R = vertcat(data{:});
for ii=1:27
text_str{ii} = R{ii};
end
text string should have 27 elements.
I need a character vector of 27 strings read from a file.
if there are not 27 elements in my file, I would like to display 'nil' for that element at the missing index
Please can someone help
  댓글 수: 6
Saud Alfalasi
Saud Alfalasi 2021년 2월 20일
@Mario Malic I understand the width of R is 3. However I would like it to be 27 - so if some lines of string from text are missing, It flags up yet my code still runs. The exact error message is in the title
Jan
Jan 2021년 2월 21일
@Saud Alfalasi: "And please don't make asking questions an unpleseant experience - questions should be encouraged, this is how people learn."
I agree with you. When you mention this explicitly I'd like to add: Please keep it pleasent for others to answer questions. Imagine what would happen, if all users catch the attraction of the top ten answerers explicitly for all of their questions. This would be a reason for me to leave the forum to avoid stress.
I answer a question, if I find the time to read it and have an idea about a possible solution. A further pushing decreases your chance to get answers. Therefore Mario's hint is valuable and you can take it as a supoort.

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

답변 (1개)

Walter Roberson
Walter Roberson 2021년 2월 20일
data = textscan(fileID,'%s');
fclose(fileID);
text_str = vertcat(data{:});
if length(text_str) > 27; text_str = text_str(1:27); end %in case it was too long
text_str(end+1:27) = {'nil'}; %if it was too short, put in nil
  댓글 수: 5
Saud Alfalasi
Saud Alfalasi 2021년 2월 21일
Records = 'record.txt';
fileID2 = fopen(Records);
data = textscan(fileID2,'%s');
fclose(fileID2);
text_str = data{1:4};
mask = cellfun(@isempty, text_str);
text_str(mask) = {'nil'};
Hi guys, array element 4 doesn't exist,
The output I was expecting is
apple
pear
cheese
nil
However this is the output:
mask =
3×1 logical array
0
0
0
Walter Roberson
Walter Roberson 2021년 2월 21일
You need to switch your method of reading entirely. I suggest that you use readlines() if you have a new enough matlab.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by