User Tools

Site Tools


tools:matrix:start

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
tools:matrix:start [2021/09/17 08:52] – [Vectors and Matrices] ursgraftools:matrix:start [2021/11/12 11:44] – [Logging Matrices] ursgraf
Line 48: Line 48:
 log.info() << m; log.info() << m;
 </code> </code>
- 
 With the 3 x 3 matrix from above we would get With the 3 x 3 matrix from above we would get
- +<code> 
-<code bash+2021-09-16 17:36:53:929    I:  [ [1 4 7]' [2 5 8]' [3 6 9]' ] 
-2021-09-16 17:36:53:929    E:  [ [1 4 7]' [2 5 8]' [3 6 9]' ]+</code> 
 +The matrix is plotted colon per colon. To give some more examples: 
 +<code cpp> 
 +Matrix<1,1> m1{1}; 
 +Matrix<2,1> m2{1,2}; 
 +Matrix<1,2> m3{1,2}; 
 +</code> 
 +This matrices will be printed as  
 +<code> 
 +2021-09-16 17:37:18:122    I:  [1]' 
 +2021-09-16 17:37:18:122    I:  [1 2]' 
 +2021-09-16 17:37:18:122    I:  [ [1]' [2]' ]'
 </code> </code>
-The matrix is plotted colon per colon. 
tools/matrix/start.txt · Last modified: 2022/04/20 13:29 by ursgraf