Difference between revisions of "Manuals/calci/MATRIXAPPENDCOLUMNS"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''MATRIXAPPENDCOLUMNS (a,b)'''</div><br/> *<math> a </math> and <math>b</math> are any two matrices. ==Description== *This function is adding the...")
 
 
(2 intermediate revisions by the same user not shown)
Line 24: Line 24:
 
|17 || 13 || 19  
 
|17 || 13 || 19  
 
|}
 
|}
 +
2. MATRIXAPPENDCOLUMNS([[6,-7,2],[10,11,12]],[[3,8],[12,14]])
 +
{| class="wikitable"
 +
|-
 +
| 6 || -7 || 2
 +
|-
 +
| 10 || 11|| 12
 +
|-
 +
| 3 || 8
 +
|-
 +
| 12 || 14
 +
|}
 +
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|v=tnBGR8KM2wY|280|center|Append Columns}}
 +
 +
==See Also==
 +
*[[Manuals/calci/MATRIXAPPENDROWS| MATRIXAPPENDROWS]]
 +
*[[Manuals/calci/COLUMN| COLUMN]]
 +
 +
==References==
 +
*[http://www.techonthenet.com/excel/formulas/column.php Column]
 +
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 14:28, 12 April 2019

MATRIXAPPENDCOLUMNS (a,b)


  • and are any two matrices.

Description

  • This function is adding the columns of the two matrices.
  • In , and are any two matrices.
  • Here this function is used to join the columns of the two matrices with out deleting any values.
  • So we can join any order of matrices together.

Examples

1. MATRIXAPPENDCOLUMNS([2,3,4;7,8,9;10,2,4],[4,6,9;20,22,43;17,13,19])

2 3 4
7 8 9
10 2 4
4 6 9
20 22 43
17 13 19

2. MATRIXAPPENDCOLUMNS([[6,-7,2],[10,11,12]],[[3,8],[12,14]])

6 -7 2
10 11 12
3 8
12 14


Related Videos

Append Columns

See Also

References