Skip to content

Commit 13f0f8b

Browse files
committed
更新至最新Numpy版本(unfinished)
1 parent b569635 commit 13f0f8b

File tree

1 file changed

+53
-33
lines changed

1 file changed

+53
-33
lines changed

3.NumPy-basics/Data_types.md

Lines changed: 53 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,75 @@
11
<!-- TOC -->
22

33
- [数据类型](#数据类型)
4-
- [数组类型和类型之间的转换](#数组类型和类型之间的转换)
5-
- [数组标量](#数组标量)
6-
- [扩展精度](#扩展精度)
4+
- [数组类型和类型之间的转换](#数组类型和类型之间的转换)
5+
- [数组标量](#数组标量)
6+
- [扩展精度](#扩展精度)
77

88
<!-- /TOC -->
99

1010
# 数据类型
1111

12-
> 原文:[Data types](http://docs.scipy.org/doc/numpy-dev/user/basics.types.html)
12+
> 原文:[Data types](https://docs.scipy.org/doc/numpy/user/basics.types.html)
1313
14-
> 另见:[数据类型对象](http://docs.scipy.org/doc/numpy-dev/reference/arrays.dtypes.html#arrays-dtypes)
14+
> 另见:[数据类型对象](https://docs.scipy.org/doc/numpy/reference/arrays.dtypes.html#arrays-dtypes)
1515
1616
## 数组类型和类型之间的转换
1717

18-
NumPy支持的数值类型比Python更多。这一节会讲述所有可用的类型,以及如何改变数组的数据类型。
19-
20-
| 数据类型 | 描述 |
21-
| --- | --- |
22-
| bool_ | 以字节存储的布尔值(True 或 False) |
23-
| int_ | 默认的整数类型(和 C 的 long 一样,是 int64 或者 int32) |
24-
| intc | 和 C 的 int 相同(一般为 int64 或 int32) |
25-
| intp | 用于下标的整数(和 C 的 ssize_t 相同,一般为int64 或者 int32) |
26-
| int8 | 字节(-128 到 127) |
27-
| int16 | 整数(-32768 到 32767) |
28-
| int32 | 整数(-2147483648 到 2147483647) |
29-
| int64 | 整数(-9223372036854775808 到 9223372036854775807) |
30-
| uint8 | 无符号整数(0 到 255) |
31-
| uint16 | 无符号整数(0 到 65535) |
32-
| uint32 | 无符号整数(0 到 4294967295) |
33-
| uint64 | 无符号整数(0 到 18446744073709551615) |
34-
| float_ | float64 的简写 |
35-
| float16 | 半精度浮点:1位符号,5位指数,10位尾数 |
36-
| float32 | 单精度浮点:1位符号,8位指数,23位尾数 |
37-
| float64 | 双精度浮点:1位符号,11位指数,52位尾数 |
38-
| complex_ | complex128 的简写 |
39-
| complex64 | 由两个32位浮点(实部和虚部)组成的复数 |
40-
| complex128 | 由两个64位浮点(实部和虚部)组成的复数 |
41-
42-
此外,Intel平台相关的C整数类型 `short``long``long long` 和它们的无符号版本是有定义的。
43-
44-
NumPy数值类型是dtype对象的实例,每个都有独特的特点。一旦你导入了NumPy:
18+
NumPy支持的数值类型比Python多得多。这一节会讲述所有可用的类型,以及如何改变数组的数据类型。
19+
20+
所支持的基本类型与C语言中的基本类型紧密相连:
21+
22+
| Numpy类型 | C中的类型 |描述 |
23+
| --- | --- | --- |
24+
| np.bool | bool | 以字节存储的布尔值(True 或 False) |
25+
| np.byte | signed char | 由平台定义
26+
| np.ubyte | unsigned char | 由平台定义
27+
| np.short | short | 由平台定义
28+
|np.ushort|unsigned short| 由平台定义
29+
|np.intc|int| 由平台定义
30+
|np.uintc|unsigned int| 由平台定义
31+
|np.int_|long| 由平台定义
32+
|np.uint|unsigned long| 由平台定义
33+
|np.longlong|long long| 由平台定义
34+
|np.ulonglong|unsigned long long| 由平台定义
35+
|np.half / np.float16|-|Half precision float: sign bit, 5 bits exponent, 10 bits mantissa|
36+
|np.single|float|Platform-defined single precision float: typically sign bit, 8 bits exponent, 23 bits mantissa|
37+
|np.double|double|Platform-defined double precision float: typically sign bit, 11 bits exponent, 52 bits mantissa.
38+
|np.longdouble|long double|Platform-defined extended-precision float
39+
|np.csingle|float complex|Complex number, represented by two single-precision floats (real and imaginary components)
40+
|np.cdouble|double complex|Complex number, represented by two double-precision floats (real and imaginary components).
41+
|np.clongdouble|long double complex|Complex number, represented by two extended-precision floats (real and imaginary components).
42+
43+
由于其中许多具有平台相关的定义,因此提供了一组固定大小的别名:
44+
45+
| Numpy类型 | C中的类型 |描述 |
46+
| --- | --- | --- |
47+
np.int8|int8_t|Byte (-128 to 127)
48+
np.int16|int16_t|Integer (-32768 to 32767)
49+
np.int32|int32_t|Integer (-2147483648 to 2147483647)
50+
np.int64|int64_t|Integer (-9223372036854775808 to 9223372036854775807)
51+
np.uint8|uint8_t|Unsigned integer (0 to 255)
52+
np.uint16|uint16_t|Unsigned integer (0 to 65535)
53+
np.uint32|uint32_t|Unsigned integer (0 to 4294967295)
54+
np.uint64|uint64_t|Unsigned integer (0 to 18446744073709551615)
55+
np.intp|intptr_t|Integer used for indexing, typically the same as ssize_t
56+
np.uintp|uintptr_t|Integer large enough to hold a pointer
57+
np.float32|float|-
58+
np.float64 / np.float_|double|Note that this matches the precision of the builtin python float.
59+
np.complex64|float complex|Complex number, represented by two 32-bit floats (real and imaginary components)
60+
np.complex128 / np.complex_|double complex|Note that this matches the precision of the builtin python complex.
61+
62+
63+
64+
NumPy数值类型是`dtype`对象的实例,每个都有独特的特点。一旦导入了NumPy:
4565

4666
```python
4767
>>> import numpy as np
4868
```
4969

5070
这些 dtype 都可以通过 `np.bool_``np.float32` 以及其它的形式访问。
5171

52-
更高级的类型不在表中给出,请见[结构化数组](http://docs.scipy.org/doc/numpy-dev/user/basics.rec.html#structured-arrays)一节。
72+
更高级的类型不在表中给出,请见[结构化数组](https://docs.scipy.org/doc/numpy/user/basics.rec.html#structured-arrays)一节。
5373

5474
有5种基本的数值类型:布尔(`bool`),整数(`int`),无符号整数(`uint`),浮点(`float`)和复数。其中的数字表示类型所占的位数(即需要多少位代表内存中的一个值)。有些类型,如`int``intp`,依赖于平台(例如32位和64位机)有不同的位数。在与低级别的代码(如C或Fortran)交互和在原始内存中寻址时应该考虑到这些。
5575

0 commit comments

Comments
 (0)