Error with using vector(end) to get last index number

I have the following line of code:
if temp_small_time(end) ~= temp_large_time(end)
It's producing an error that says Subscript indices must either be real positive integers or logicals. I just want to know if the value at the end of each vector is the same, but I don't "know" where the end is, thus, I'm using the end keyword. What is wrong here?

댓글 수: 3

You can know where the end is by using "length(X)" (if 1 line/column or "size(X)" if it is an MxN matrix ..
I also get the same error when I use length()
if temp_small_time(length(temp_small_time)) ~= temp_large_time(length(temp_large_time))
What does your matrixes look like? Could you add the code?

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

답변 (3개)

Star Strider
Star Strider 2016년 4월 29일

0 개 추천

Sometimes an error will occur pointing to a line that is not actually where the error occurred. Check the line just before it to see if there’s some sort of problem with that line.

댓글 수: 2

The line before it is the keyword end for an if statement.
Since it’s an if block, it would be best to post the entire if block, since the problem would likely occur only if the particular statement was executed.
Seeing the code could give a clue.

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

Walter Roberson
Walter Roberson 2016년 4월 29일

0 개 추천

It sounds like you assigned a value to a variable named "end"

댓글 수: 3

The only other place I use "end" is to finish my if statements and for loops.
I did that experiment (assigning a variable to ‘end’). MATLAB has serious problems with that, and throws an assignment error.
Your array is empty. Accessing an empty array at (end) results in that error message.

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

Jadee Kellogg
Jadee Kellogg 2016년 4월 29일

0 개 추천

I figured it out, thanks everyone! I actually emptied by vector earlier in the code on accident so there was no end because there was nothing in it.

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

질문:

2016년 4월 29일

답변:

2016년 4월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by