Programmer Guide/Command Reference/EVAL/vmrow: Difference between revisions

From STX Wiki
Jump to navigationJump to search
m (1 revision: Initial import)
No edit summary
Line 1: Line 1:
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
{{DISPLAYTITLE:{{SUBPAGENAME}}}}
=====vmrow=====
Create a matrix by merging columns of source vectors and/or matrices into the rows of the result.
;Usage: '''<code><var>vmcol(x1</var> {, <var>x2</var> {, .. }})</code>'''
:;<var>x1</var>, <var>x2</var>, ..: source vectors and/or matrices with the same number of rows
;Result: A matrix with <code>nrow(''x1'')</code> columns. The columns of the arguments are merged from left to right into the rows of the result matrix. Note: <code>vmrow(a,b,c)</code> returns the same result as <code>trn(vmcol(a,b,c))</code> but vmrow is faster and uses less memory.
;See also: [[Programmer_Guide/Command_Reference/EVAL/vv|vv]], [[Programmer_Guide/Command_Reference/EVAL/vvset|vvget]], [[Programmer_Guide/Command_Reference/EVAL/vvset|vvset]], [[Programmer_Guide/Command_Reference/EVAL/vvcat|vvcat]], [[Programmer_Guide/Command_Reference/EVAL/vmcol|vmcol]], [[Programmer_Guide/Command_Reference/EVAL/vsubn|vsubn]], [[Programmer_Guide/Command_Reference/EVAL/vsubc|vsubc]]


{|
Example:
|-
<pre>
|vmrow(x1M, <var>x2</var>M,...)
#a := eval vv(1,2,3,4,5)
|Create a matrix using the matrices x1M, <var>x2</var>M,... (the matrices must have the same number of rows as arguments).
#b := eval init(5,2,0)
|-
#c := eval vmcol($#a, $#b, $#a)  
|vmrow(x1V, <var>x2</var>V,...)
// -> $#c is a matrix with 5 rows and 4 columns:
|Create a matrix using the vectors x1v, <var>x2</var>v, .. (vectors with the same length) - one vector per row.The result is: a matrix (the number of vectors * the number of vector elements)
//    $#c[*,*] = $#a,  #c[1,*] = $#b[*,0],  $#c[2,*] = $#b[*,1],  $#c[3,*] = $#a
|}
</pre>
 
[[Programmer_Guide/Command_Reference/EVAL#Functions|<function list>]]

Revision as of 08:42, 6 April 2011

Create a matrix by merging columns of source vectors and/or matrices into the rows of the result.

Usage
vmcol(x1 {, x2 {, .. }})
x1, x2, ..
source vectors and/or matrices with the same number of rows
Result
A matrix with nrow(x1) columns. The columns of the arguments are merged from left to right into the rows of the result matrix. Note: vmrow(a,b,c) returns the same result as trn(vmcol(a,b,c)) but vmrow is faster and uses less memory.
See also
vv, vvget, vvset, vvcat, vmcol, vsubn, vsubc

Example:

#a := eval vv(1,2,3,4,5)
#b := eval init(5,2,0)
#c := eval vmcol($#a, $#b, $#a) 
// -> $#c is a matrix with 5 rows and 4 columns:
//    $#c[*,*] = $#a,  #c[1,*] = $#b[*,0],  $#c[2,*] = $#b[*,1],  $#c[3,*] = $#a

<function list>

Navigation menu

Personal tools