getArrayElem.m 52 B

123
  1. function xN = getArrayElem(x, n)
  2. xN = x(n);
  3. end