[Python] Scipy and Numpy(1)

import numpy as np

#Create an array of 1*10^7 elements
arr = np.arange(1e7)

#Converting ndarray to list
larr = arr.tolist()

#Create a 2D numpy array
arr = np.zeros((3,3))

#Converting a array to matrix
mat = np.matrix(arr)
np.matrix(‘1,2,3;4,5,6;7,8,9‘);

#Array Creation
#First we create a list and then
#wrap it with the np.array() function
alist = [1,2,3]
arr = np.array(alist)

#Creating an array of zeros with 5 elements
arr = np.zeros(5)

#Creating an array going from 0 to 100
#not include 100
arr = np.arange(100)

#from 10 to 100 (not include 100)
arr = np.arange(10, 100)

#100 steps form 1 to 100
#(start, end, step)
arr = np.linspace(0, 1, 100)

#Creating an 5X5 array of zeros
image = np.zeros((5,5))

#Creating a 5X5X5 cube of 1‘s
#The astype() method sets the array with integer elements
cube = np.zeros(5,5,5).astype(int) + 1

#Or even simpler with 16-bit floating-point precision
cube = np.ones((5,5,5)).astype(np.float16)

#Change Data type
#Use dtype: int numpy.float16, numpy.float32, numpy.float64
arr = np.zeros(2, dtype=int)
arr = np.zeros(2, dtype=np.float32)

‘‘‘
The restructured arrays are just different views
of the same data in memory.
If chang one of them, you will change all.
If you don‘t want this to happen, then use the numpy.copy function
to separete the arrays mamory-wise.
‘‘‘
#Created arrays and reshape them in many others ways
#Creating an array with elements from 0 to 999
arr1d = np.arange(1000)

#reshaping the array to a 10x10x10 3D array
arr3d = arr1d.reshape((10,10,10))
arr3d = np.reshape(arr1d, (10,10,10))

#Invesely, we can flatten arrays
arr4d = np.zeros((10,10,10,10))
arr1d = arr4d.ravel()
print arr1d.shape

recarr = np.zeros((2,), dtype(‘i4, f4, a10‘))
#the type for the first to third columns
#i4 := 32-bit integer
#f4 := 32-bit float
#a10 := a string 10 characters long

#We can assign names to each column
recarr.dtype.names = (‘Integers‘, ‘Floats‘, ‘Strings‘)

#Indexing and Slicing
alist = [[1,2],[3,4]]
arr = np.array(alist)
arr[0,1]#It‘s the same as arr[0][1]
arr[:,1]#return the last column
arr[1,:]#return the bottom row

  

时间: 2024-10-25 01:34:15

[Python] Scipy and Numpy(1)的相关文章

python数据分析之numpy+pandas+scipy+matplotlib+scikit-learn安装

摘要 利用python来进行数据分析的时候,需要安装一些常见的工具包,如numpy,pandas,scipy等等,在安装的过程中,经常遇到一些安装细节的问题,如版本不匹配,需要依赖包没有正确安装等等,本文汇总梳理了下几个必要安装包的安装步骤,希望对读者有帮助,环境是windows 64 bit+python2.7.11. 一.安装python2.7.11 进入官网:https://www.python.org/downloads/release/python-2711/ 下载如下的连接: 下载之

Python中的Numpy、SciPy、MatPlotLib安装与配置

Python安装完Numpy,SciPy和MatplotLib后,可以成为非常犀利的科研利器.网上关于这三个库的安装都写得非常不错,但是大部分人遇到的问题并不是如何安装,而是安装好后因为配置不当,在使用时总会出现import xxx error之类的错误.我也是自己摸索了很久才发现如何去正确配置的.下面就详细说下安装和配置的过程. 1.安装Python,这里选择2.7还是3.4都行,不过推荐使用2.7,毕竟现在的教程大部分还是基于2.7的,3.4跟2.7的语法还是略有不同,为了避免语法错误的麻烦

Python 机器学习库 NumPy 教程

0 Numpy简单介绍 Numpy是Python的一个科学计算的库,提供了矩阵运算的功能,其一般与Scipy.matplotlib一起使用.其实,list已经提供了类似于矩阵的表示形式,不过numpy为我们提供了更多的函数.如果接触过matlab.scilab,那么numpy很好入手. 1 安装 pip install numpy 在NumPy中,维度称之为axis(复数是axes),维度的数量称之为rank. (通用做法import numpu as np 简单输入) 2 多维数组 NumPy

Python本地安装numpy包

python的pip工具可以很方便的在线安装各种第三包包,但有时也需要离线的方式通过本地包来安装,下面就介绍一下如果通过本地安装的方式安装numpy包 1. python官网下载python安装包,并安装,记得在安装选项栏里将pip选项选上,pip是python官方自带的包管理工具 可以很方便的通过pip安装所需要的包,不过忘记点也没有关系 2. 在https://pypi.python.org/pypi/numpy下载合适的numpy版本的包,由于机器安装的是python2.7,所以这里选择了

第二周:神经网络的编程基础----------3、Python Basics with numpy (optional)

Python Basics with numpy (optional)Welcome to your first (Optional) programming exercise of the deep learning specialization. In this assignment you will: - Learn how to use numpy. - Implement some basic core deep learning functions such as the softm

Python——数据分析,Numpy,Pandas,matplotlib

由于图片内容太多,请拖动至新标签页再查看 Python--数据分析,Numpy,Pandas,matplotlib 原文地址:https://www.cnblogs.com/Jery-9527/p/10804069.html

Python中安装numpy,scipy,matplotlib安装方法

这个吧,说简单也简单,说难吧我捣鼓了两天才弄出来,真是头发都急白了.其实只要一个网址就搞定了,嘿嘿 http://www.lfd.uci.edu 这里面有你需要的任何东西,当你运行python import 的时候提示缺什么,你就到这里下载安装就可以了 测试下列语句就可以验证是否安装成功: import matplotlib import numpy import scipy import pyparsing import matplotlib.pyplot as plt 这些都不出错就ok了!

Windows下python virtualenv使用,镜像源设置,批量安装,安装scipy,numpy

镜像源设置 在C:\Users\Administrator\下建立pip文件夹,然后在里面创建了一个pip.ini 内容为: [global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple virtualenv安装 pip install virtualenv 好了,现在假如你需要进行数值方面的研究需要安装 python-numpy python-scipy python-matplotlib ipython ipython-notebo

Python数据分析之numpy学习

Python模块中的numpy,这是一个处理数组的强大模块,而该模块也是其他数据分析模块(如pandas和scipy)的核心. 接下面将从这5个方面来介绍numpy模块的内容: 1)数组的创建 2)有关数组的属性和函数 3)数组元素的获取--普通索引.切片.布尔索引和花式索引 4)统计函数与线性代数运算 5)随机数的生成 数组的创建 numpy中使用array()函数创建数组,array的首个参数一定是一个序列,可以是元组也可以是列表. 一维数组的创建 可以使用numpy中的arange()函数