Member of the programming and the support classes.
end
Marks the end of for, while, switch, and if statements or indicates the last element of a row, column, or matrix. Within matrix indexing, A(end) indicates the last element of the matrix. A(2, end) indicates the the last element of the second row. A(end, 2) indicates the last element of the second column.
A = 1
for X = 1:10
A = A+1
end
A = [1 2; 3 4; 5 6]
X = A(end, 1:end)