Can I have a stack data structure in matlab?
For example a stack of integers where I can push elements in it like stack.push(i), get elements out of it like
stack.push(i)
I have used the Java one in MATLAB and honestly it is very slow. It's much better to do what @skurmedel said, like so:
Ptr = 1; Stack(ptr,:) = [x,y]; Ptr = ptr + 1;
And to simulate pop:
pop
A = stack(ptr,1); B = stack(ptr,2); Ptr = ptr - 1;