In Matlab, end index lets me access a last item.
end
> array = [1 2 3 4 5 6 7]; > array(end) ans = 7
How do I do the same i
array ( ubound (array) )
size will only work if the array is 1-indexed.
size