Using NumPy to create an initialization array in Python

Source: Internet
Author: User

Import NumPy as NP

Np.arange (Dtype = float) #numpy中的arange与普通的range作用一样, range (start, stop, step)

#arange可以通过dtype来指定创建的数组类型, arrays differ from tuples and lists, and the entire array must be of the same type.

Np.linspace (Start, stop, number) #其中number指定了start到stop之间的个数 (contains both end point values)

Of course, you can also generate random numbers to initialize an array.

Np.random.rand (2, 4) #产生一个2行4列的array, Rand uses a uniform distribution between 0 and 1.

NP.RANDOM.RANDN (2, 4) #产生一个2行4列的array, RANDN uses a standard normal distribution, that is, the mean value is 0, the variance is 1

Using NumPy to create an initialization array in Python

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.