Macaulay2 » Documentation
Packages » Macaulay2Doc » matrices » mutable matrices » row and column operations » rowSwap
next | previous | forward | backward | up | index | toc

rowSwap -- interchange rows

Description

i1 : m = mutableMatrix matrix{{1,2,3},{4,5,6}}

o1 = | 1 2 3 |
     | 4 5 6 |

o1 : MutableMatrix
i2 : rowSwap(m,0,1)

o2 = | 4 5 6 |
     | 1 2 3 |

o2 : MutableMatrix
i3 : m

o3 = | 4 5 6 |
     | 1 2 3 |

o3 : MutableMatrix

See also

Ways to use rowSwap:

  • rowSwap(MutableMatrix,ZZ,ZZ)

For the programmer

The object rowSwap is a method function.


The source of this document is in Macaulay2Doc/doc_mutablematrices.m2:188:0.