필터 지우기
필터 지우기

No output from a for and elseif loop

조회 수: 2 (최근 30일)
Mohammad R. Ghassemi
Mohammad R. Ghassemi 2021년 10월 15일
댓글: Mohammad R. Ghassemi 2021년 10월 15일
Hi,
I am trying to get the J matrix from the following simple code, however I receive no output for J:
str=readline('1C1S.txt','all');
P=strfind(str,'w');
for x=1:numel(str)
if isempty(P(x,1))
J=1;
elseif isequal(P(x,1),[9])
J=2;
elseif isequal(P(x,1),[4])
J=3;
elseif isequal(P(x,1),[4 9])
J=4;
end
end
  댓글 수: 2
Walter Roberson
Walter Roberson 2021년 10월 15일
What is readline() ? The readline() functions I can find in MATLAB require serial port or tcp port, and do not have a 'all' parameter.
Mohammad R. Ghassemi
Mohammad R. Ghassemi 2021년 10월 15일
It is a useful function I have downloaded from the MathWorks.
It reads all strings from a text file (line by line) as they are (including spaces etc.).

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

채택된 답변

DGM
DGM 2021년 10월 15일
편집: DGM 2021년 10월 15일
That should be readlines().
P is a cell array of numeric vectors, so address it accordingly.
Any assignment to J overwrites the prior value in J.
The case where none of the conditional tests is true is not handled.
The equality tests are probably wrong, but since there's no description of the intended logic, I don't know what to tell you.
To summarize:
isequal(P(x,1),[4 9])
is never true, because P(x,1) is a cell scalar, which is never equal to any numeric vector.
isequal(P{x,1},[4 9])
is only true if the vector in P{x,1} is identical to [4 9]. That is, it needs to be the same length and all elements must match.
  댓글 수: 2
Mohammad R. Ghassemi
Mohammad R. Ghassemi 2021년 10월 15일
Thank you for your comments. The function is in fact "readline", which I have downloaded from the MathWorks. It reads all strings from a text file (line by line) as they are (including spaces etc.).
I have replaced the parentheses with braces as you suggested. Now I have the J in the output, however it is a single number which I think belongs to the last (x) index.
There should be somthing wrong with my elseif command.
Mohammad R. Ghassemi
Mohammad R. Ghassemi 2021년 10월 15일
Thanks a lot. I indexed J as J(x,1) and now I have the required complete output.

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

추가 답변 (0개)

카테고리

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