projects
/
LeanCalc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git]
/
help
/
mattrans
1
NAME
2
mattrans - matrix transpose
3
4
SYNOPSIS
5
matdim(m)
6
7
TYPES
8
m 2-dimensional matrix
9
10
return 2-dimensional matrix
11
12
DESCRIPTION
13
Returns the matrix whose [i,j] element is the [j,1] element of m.
14
15
EXAMPLE
16
> mat A[2, 1:3] = {1,2,3,4,5,6}
17
> print mattrans(A)
18
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
26
27
LIMITS
28
none
29
30
LINK LIBRARY
31
MATRIX *mattrans(MATRIX *m)
32
33
SEE ALSO
34
XXX - fill in
35