Get an element from a matrix accessed sequentially
mps_get_ele_seq( rop, op, i )
multi-precision scalar
multi-precision matrix
Return element [i] of op into rop. The matrix is accessed sequentially by concatenating its columns.
op
rop
// Standard usage. A = [1 -2; 3 -4] mpsA = mps_init2(A,100) mpsB = mps_init(1,1,100) mps_get_ele_seq(mpsB,mpsA,2)