前言 对于学习NumPy(Numeric Python),首先得明确一点是:Numpy 是用来处理矩阵数组的. shape 属性 对于shape函数,官方文档是这么说明: the dimensions of the array. This is a tuple of integers indicating the size of the array in each dimension. 直译:数组的维度.这是一个整数的元组,元组中的每一个元素对应着每一维度的大小(size). 再直译一点理解就是
shape是查看数据有多少行多少列reshape()是数组array中的方法,作用是将数据重新组织 1.shape import numpy as np a = np.array([1,2,3,4,5,6,7,8]) #一维数组 print(a.shape[0]) #值为8,因为有8个数据 print(a.shape[1]) #IndexError: tuple index out of range a = np.array([[1,2,3,4],[5,6,7,8]]) #二维数组 print(
C++语言提供了自动类型推断的机制,用于简化代码书写,这是一种很不错的特性,使用auto和decltype都可以完成自动类型推断的工作,而且都工作在编译期,这表示在运行时不会有任何的性能损耗. 一.auto自动类型推断 auto自动类型推断的机制和函数模板的推断机制很相似,auto就类似于模板中的T. (1.1) auto变量以传值方式初始化 一句话总结:抛弃掉对象的const和引用属性,新对象就像一个全新的副本:对于指针,会抛弃其顶层const属性,保留其底层const属性. int main