Extract

Returns the rows of x with the numbers which are stored in i. This function is defined for matrices and signals. If x is a signal the row 0 is the abscissae vector, row 1 is the first ordinate, and so on.

Syntax

extract(x,i)

Types
 Variable NameValue TypeVariable Type
Arguments:xreal, complexmatrix, signal, xy-data
irealscalar, vector
Result: vreal, complex vector, matrix
Calculator Input

Use the extract button to complete the operation.

Examples
IDDescriptionTypeValueExpression
x REAL MATRIX

[[2,3,4],[3,4,5]]
i REAL11
v Result REAL VECTOR

extract(x,i)
IDDescriptionTypeValueExpression
x REAL SIGNAL   signal([1,2,3],[2,3,4],[3,4,5])
i REAL VECTOR

[0,1]
A Result REAL MATRIX

extract(x,i)