matrix and list entry extraction
x(i)
x(i,j)
x(i,j,k,..)
[...]=l(i)
[...]=l(k1)...(kn)(i) or [...]=l(list(k1,...,kn,i))
l(k1)...(kn)(i,j) or l(list(k1,...,kn,list(i,j))
:x matrix of any possible types : :l list variable : :i,j, k indices : :k1,...kn indices :
MATRIX CASE i, j, k,.. can be: | |
---|---|
:a real scalar or a vector or a matrix with positive elements.
: :the symbol : `` which stands for “all elements”.
: |
: :LIST OR TLIST CASE If they are present the ki give the path to a sub-list entry of l data structure. They allow a recursive extraction without intermediate copies. The instructions [...]=l(k1)...(kn)(i) and [...]=l(list(k1,...,kn,i)) are interpreted as: lk1 = l(k1) .. = .. lkn = lkn-1(kn) [...] = lkn(i). And the l(k1)...(kn)(i,j) and l(list(k1,...,kn,list(i,j)) instructions are interpreted as: lk1 = l(k1) .. = .. lkn = lkn-1(kn) lkn(i,j) When path points on more than one list component the instruction must have as many left hand side arguments as selected components. But if the extraction syntax is used within a function input calling sequence each returned list component is added to the function calling sequence. Note that, l(list()) is the same as l.
- :i and j may be :
- :real scalar or vector or matrix with positive elements.
- [r1,...rn]=l(i) extracts the i(k) elements from the list l and store them in rk variables for k from 1 to size(i,’*’)
: :the symbol : which stands for “all elements”. : :a vector of booleans. If i is a vector of booleans it is
interpreted as find(i).
- : :a polynomial If i is a vector of polynomials or implicit
- polynomial vector it is interpreted as horner(i,m) where m=size(l). Even if this feature works for all polynomials, it is recommended to use polynomials in $ for readability.
:
- : :k1 ... kn may be :
:real positive scalar : :a polynomial interpreted as horner(ki,m) where m is the
corresponding sub-list size.: :a character string associated with a sub-list entry name. :
:
:
For soft coded matrix types such as rational functions and state space linear systems, x(i) syntax may not be used for vector element extraction due to confusion with list element extraction. x(1,j) or x(i,1) syntax must be used.
// MATRIX CASE
a=[1 2 3;4 5 6]
a(1,2)
a([1 1],2)
a(:,1)
a(:,3:-1:1)
a(1)
a(6)
a(:)
a([%t %f %f %t])
a([%t %f],[2 3])
a(1:2,$-1)
a($:-1:1,2)
a($)
//
x='test'
x([1 1;1 1;1 1])
//
b=[1/%s,(%s+1)/(%s-1)]
b(1,1)
b(1,$)
b(2) // the numerator
// LIST OR TLIST CASE
l=`list`_(1,'qwerw',%s)
l(1)
[a,b]=l([3 2])
l($)
x=`tlist`_(l(2:3)) //form a tlist with the last 2 components of l
//
dts=`list`_(1,`tlist`_(['x';'a';'b'],10,[2 3]));
dts(2)('a')
dts(2)('b')(1,2)
[a,b]=dts(2)(['a','b'])