User Tools

Site Tools


at:tutorial:basic

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
at:tutorial:basic [2020/02/09 19:35] elisagat:tutorial:basic [2020/02/09 19:40] – * elisag
Line 85: Line 85:
 >>[2, 3, 4] >>[2, 3, 4]
 </code> </code>
 +
 +
 +
  
  
Line 102: Line 105:
 >a[1] >a[1]
 >>[1, 0, 0] >>[1, 0, 0]
 +>(a[1])[2] := 3;
 +>>3
 +>a
 +>>[[1, 3, 0], [0, 1, 0], [0, 0, 1]]
 </code> </code>
  
Line 111: Line 118:
 def b[3] { i := i + 1; aux := [0,0,0]; aux[i] :=1; aux}; def b[3] { i := i + 1; aux := [0,0,0]; aux[i] :=1; aux};
 >>[[1, 0, 0], [0, 1, 0], [0, 0, 1]] >>[[1, 0, 0], [0, 1, 0], [0, 0, 1]]
->b[1][2] 
->>0 
->(b[1])[2] := 3; 
->>3 
->b 
->>[[1, 3, 0], [0, 1, 0], [0, 0, 1]] 
 </code> </code>
  
Line 125: Line 126:
 def c := makeMatrix(3); def c := makeMatrix(3);
 >>[[0, 0, 0], [0, 0, 0], [0, 0, 0]] >>[[0, 0, 0], [0, 0, 0], [0, 0, 0]]
->c[1] :=[1,2,3]+>c[1] := [1,2,3]
 >>[1, 2, 3] >>[1, 2, 3]
 +>c
 >>[[1, 2, 3], [0, 0, 0], [0, 0, 0]] >>[[1, 2, 3], [0, 0, 0], [0, 0, 0]]
-</code> 
 </code> </code>
  
at/tutorial/basic.txt · Last modified: 2020/02/09 22:05 by elisag