get_memberReturns an element from a vector or matrix type.
valueThe vector or matrix to query.
indexThe index of the element to access. For matrix types, the indices are accessed in column-major order. To access the (r,c)-th member, use C*c+r as the index, where C is the number of columns in the matrix.
outputThe value at the requested element index, or a default value if the index was out of bounds.