modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / mattrans
blobe932c177ae98a32d3e392f1e0f9bd92cf61ff332
1 NAME
2     mattrans - matrix transpose
4 SYNOPSIS
5     matdim(m)
7 TYPES
8     m           2-dimensional matrix
10     return      2-dimensional matrix
12 DESCRIPTION
13     Returns the matrix whose [i,j] element is the [j,1] element of m.
15 EXAMPLE
16     ; mat A[2, 1:3] = {1,2,3,4,5,6}
17     ; print mattrans(A)
19     mat [1:3,2] (6 elements, 6 nonzero):
20       [1,0] = 1
21       [1,1] = 4
22       [2,0] = 2
23       [2,1] = 5
24       [3,0] = 3
25       [3,1] = 6
27 LIMITS
28     none
30 LINK LIBRARY
31     MATRIX *mattrans(MATRIX *m)
33 SEE ALSO
34     mat, ismat, matdim, matmax, matmin, mattrace, matsum, matfill,
35     det, inverse, isident, test, config, search, rsearch, reverse, copy,
36     blkcpy, dp, cp, randperm, sort
38 ## Copyright (C) 1999-2006  Landon Curt Noll
40 ## Calc is open software; you can redistribute it and/or modify it under
41 ## the terms of the version 2.1 of the GNU Lesser General Public License
42 ## as published by the Free Software Foundation.
44 ## Calc is distributed in the hope that it will be useful, but WITHOUT
45 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
46 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
47 ## Public License for more details.
49 ## A copy of version 2.1 of the GNU Lesser General Public License is
50 ## distributed with calc under the filename COPYING-LGPL.  You should have
51 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
52 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
54 ## @(#) $Revision: 30.1 $
55 ## @(#) $Id: mattrans,v 30.1 2007/03/16 11:10:42 chongo Exp $
56 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/mattrans,v $
58 ## Under source code control:   1995/10/25 04:03:46
59 ## File existed as early as:    1995
61 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
62 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/