|
14 | 14 | * find - Return the indices where some condition is true; |
15 | 15 | numpy.nonzero is similar but more general. |
16 | 16 |
|
17 | | - * polyfit - least squares best polynomial fit of x to y |
18 | | -
|
19 | | - * polyval - evaluate a vector for a vector of polynomial coeffs |
20 | 17 |
|
21 | 18 | * prctile - find the percentiles of a sequence |
22 | 19 |
|
|
29 | 26 |
|
30 | 27 | The following are deprecated; please import directly from numpy |
31 | 28 | (with care--function signatures may differ): |
| 29 | +
|
32 | 30 | * conv - convolution (numpy.convolve) |
33 | 31 | * corrcoef - The matrix of correlation coefficients |
34 | 32 | * hist -- Histogram (numpy.histogram) |
35 | 33 | * linspace -- Linear spaced array from min to max |
36 | 34 | * meshgrid |
| 35 | + * polyfit - least squares best polynomial fit of x to y |
| 36 | + * polyval - evaluate a vector for a vector of polynomial coeffs |
37 | 37 | * trapz - trapeziodal integration (trapz(x,y) -> numpy.trapz(y,x)) |
38 | 38 | * vander - the Vandermonde matrix |
39 | 39 |
|
|
46 | 46 |
|
47 | 47 | = record array helper functions = |
48 | 48 |
|
49 | | - rec2csv : store record array in CSV file |
50 | | - rec2excel : store record array in excel worksheet - required pyExcelerator |
51 | | - rec2gtk : put record array in GTK treeview - requires gtk |
52 | | - csv2rec : import record array from CSV file with type inspection |
53 | | - rec_append_field : add a field/array to record array |
54 | | - rec_drop_fields : drop fields from record array |
55 | | - rec_join : join two record arrays on sequence of fields |
| 49 | + * rec2csv : store record array in CSV file |
| 50 | + * rec2excel : store record array in excel worksheet - required pyExcelerator |
| 51 | + * rec2gtk : put record array in GTK treeview - requires gtk |
| 52 | + * csv2rec : import record array from CSV file with type inspection |
| 53 | + * rec_append_field : add a field/array to record array |
| 54 | + * rec_drop_fields : drop fields from record array |
| 55 | + * rec_join : join two record arrays on sequence of fields |
56 | 56 |
|
57 | 57 | For the rec viewer clases (rec2csv, rec2excel and rec2gtk), there are |
58 | 58 | a bunch of Format objects you can pass into the functions that will do |
|
0 commit comments