Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
documentation:language_reference:objects:matrix:functions:transpose [2018/09/25 13:13] – created Simon Heinzedocumentation:language_reference:objects:matrix:functions:transpose [2024/12/12 18:15] (current) Maurits W. Haverkort
Line 6: Line 6:
 ### ###
  
-===== Example ===== 
  
-### + 
-Maybe oneday. +===== Example =====
-###+
  
 ==== Input ==== ==== Input ====
 <code Quanty Example.Quanty> <code Quanty Example.Quanty>
--- some example code+A = Matrix.New({{1,1+2*I},{3,4+I}}) 
 +B = Matrix.Transpose(A) 
 +print(B)
 </code> </code>
  
 ==== Result ==== ==== Result ====
 <file Quanty_Output> <file Quanty_Output>
-text produced as output+{ {  1              ,  3              } , 
 +  {  1 + 2 I        ,  4 + 1 I        } }
 </file> </file>
  
 ===== Table of contents ===== ===== Table of contents =====
-{{indexmenu>.#1|msort}}+{{indexmenu>..:#2|tsort}}
  
Print/export