Python Learning Notes (arange function and Linspace function)

Source: Internet
Author: User

Previous mentions to Matplotlib module, which will involve numpy module scientific counting

Here is a summary of the two array generation functions Arange and Linspace:

1 #!/usr/bin/env python2 #-*-coding:utf_8-*-3 4 ImportNumPy5 6 7 PrintNumpy.arange (1, 100, 2)8 #first parameter start value, second parameter end value (not included), third parameter step (interval between each element)9 PrintNumpy.linspace (1, 100, 2)Ten #first parameter start value, second parameter end value (included by default), number of third parameter element One PrintNumpy.linspace (1, 2, endpoint=False) A PrintNumpy.linspace (1, 2, endpoint=True) - #Endpoint property setting whether to include an end value

Run results

Python Learning Notes (arange function and Linspace function)

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.