~vcs-imports/scipy/numpy-docs

« back to all changes in this revision

Viewing changes to source/reference/routines.array-manipulation.rst

  • Committer: ptvirtan
  • Date: 2008-10-26 17:57:55 UTC
  • Revision ID: vcs-imports@canonical.com-20081026175755-265j4vcbtj2wk6iq
Import initial version of Numpy documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Array manipulation routines
 
2
***************************
 
3
 
 
4
.. currentmodule:: numpy
 
5
 
 
6
.. toctree::
 
7
 
 
8
Changing array shape
 
9
====================
 
10
.. autosummary::
 
11
   :toctree: generated/
 
12
 
 
13
 
 
14
   reshape
 
15
   ravel
 
16
   ndarray.flat
 
17
   ndarray.flatten
 
18
 
 
19
Transpose-like operations
 
20
=========================
 
21
.. autosummary::
 
22
   :toctree: generated/
 
23
 
 
24
 
 
25
   rollaxis
 
26
   swapaxes
 
27
   ndarray.T
 
28
   transpose
 
29
 
 
30
Changing number of dimensions
 
31
=============================
 
32
.. autosummary::
 
33
   :toctree: generated/
 
34
 
 
35
 
 
36
   atleast_1d
 
37
   atleast_2d
 
38
   atleast_3d
 
39
   broadcast
 
40
   broadcast_arrays
 
41
   expand_dims
 
42
   squeeze
 
43
 
 
44
Changing kind of array
 
45
======================
 
46
.. autosummary::
 
47
   :toctree: generated/
 
48
 
 
49
   asarray 
 
50
   asanyarray 
 
51
   asmatrix
 
52
   asfarray
 
53
   asfortranarray
 
54
   asscalar
 
55
   require
 
56
 
 
57
Joining arrays
 
58
==============
 
59
.. autosummary::
 
60
   :toctree: generated/
 
61
 
 
62
   append 
 
63
   column_stack 
 
64
   concatenate 
 
65
   dstack 
 
66
   hstack 
 
67
   vstack
 
68
 
 
69
Splitting arrays
 
70
================
 
71
.. autosummary::
 
72
   :toctree: generated/
 
73
 
 
74
   array_split 
 
75
   dsplit 
 
76
   hsplit 
 
77
   split 
 
78
   vsplit
 
79
 
 
80
Tiling arrays
 
81
=============
 
82
.. autosummary::
 
83
   :toctree: generated/
 
84
 
 
85
   tile 
 
86
   repeat
 
87
 
 
88
Adding and removing elements
 
89
============================
 
90
.. autosummary::
 
91
   :toctree: generated/
 
92
 
 
93
   delete 
 
94
   insert 
 
95
   resize 
 
96
   trim_zeros
 
97
   unique
 
98
 
 
99
Rearranging elements
 
100
====================
 
101
.. autosummary::
 
102
   :toctree: generated/
 
103
 
 
104
   fliplr 
 
105
   flipud 
 
106
   reshape 
 
107
   roll 
 
108
   rot90