Matlab Array indixing error
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
On Matlab 2022 i have the following error :
Array indices must be positive integers or logical values.
Error in mdl2List>NomBarreMdl (line 1022)
y1=Nom(end-1:end);
I don't know why it gives me this error because when i use the debugger and i pause on the same line and i use this line on the matlab command it works perfectly. But in the function it doesn't.
댓글 수: 5
Stephen23
2022년 11월 18일
"so i don't understand why"
Your function assumes that NOM has two or more elements, but does not check this in any way. This is a bug.
채택된 답변
KSSV
2022년 11월 18일
In MATLAB the indices should be posittive integers or logicals. If not it will throw the error which you have shown.
% EXample
A = rand(1,10) ;l
A(1) % no error
A(end) % no error; gives last element
% logica lindexing
idx = A>0.5 ;
A(idx)
%
A(0.5) % error. Index cannot be fraction
A(0) % error index cannot be 0
So, I suspect in your case, you have a variable on the name end. Check
whos end
댓글 수: 5
Steven Lord
2022년 11월 18일
Is Nom a char vector or a string?
Nom_char = '#TrAF115kV'
Nom_string = string(Nom_char)
whos Nom_char Nom_string
Nom_char has 10 characters and so asking for the last two characters works.
Nom_char(end-1:end)
Nom_string is 1 string and so asking for the last two elements using indexing wouldn't work. I'll show that as the last line of code in this comment. You could retrieve the last two characters of either using extractAfter instead of indexing.
c1 = extractAfter(Nom_char, strlength(Nom_char)-2)
s1 = extractAfter(Nom_string, strlength(Nom_string)-2)
Nom_string(end-1:end) % This doesn't work
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!