日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線(xiàn)咨詢(xún)客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

Numpy庫(kù)是Python中最常用的數(shù)據(jù)處理庫(kù)之一,它憑借著其高效、便捷的操作方式廣受數(shù)據(jù)分析人員的喜愛(ài)。在Numpy庫(kù)中,有許多常用的函數(shù)可以幫助我們快速、高效地完成數(shù)據(jù)處理任務(wù)。本篇文章將介紹一些常用的Numpy函數(shù),并提供代碼示例和實(shí)際應(yīng)用場(chǎng)景,讓讀者能夠更快地上手Numpy庫(kù)。

一、創(chuàng)建數(shù)組

    numpy.array

函數(shù)原型:numpy.array(object, dtype=None, copy=True, order=’K’, subok=False, ndmin=0)

功能描述:將列表等對(duì)象轉(zhuǎn)化為數(shù)組。

代碼實(shí)例:

import numpy as np

a = np.array([1, 2, 3])
print(a)  # 輸出 [1 2 3]

登錄后復(fù)制

    numpy.zeros

函數(shù)原型:numpy.zeros(shape, dtype=float, order=’C’)

功能描述:創(chuàng)建指定形狀的全零數(shù)組。

代碼實(shí)例:

import numpy as np

a = np.zeros((2, 3))
print(a)  # 輸出 [[0. 0. 0.]
          #      [0. 0. 0.]]

登錄后復(fù)制

    numpy.ones

函數(shù)原型:numpy.ones(shape, dtype=None, order=’C’)

功能描述:創(chuàng)建指定形狀的全一數(shù)組。

代碼實(shí)例:

import numpy as np

a = np.ones((2, 3))
print(a)  # 輸出 [[1. 1. 1.]
          #      [1. 1. 1.]]

登錄后復(fù)制

    numpy.arange

函數(shù)原型:numpy.arange(start, stop, step, dtype=None)

功能描述:創(chuàng)建等差數(shù)列數(shù)組。

代碼實(shí)例:

import numpy as np

a = np.arange(0, 10, 2)
print(a)  # 輸出 [0 2 4 6 8]

登錄后復(fù)制

二、數(shù)組的操作

    numpy.reshape

函數(shù)原型:numpy.reshape(a, newshape, order=’C’)

功能描述:將數(shù)組a轉(zhuǎn)換為指定形狀的新數(shù)組。

代碼實(shí)例:

import numpy as np

a = np.array([1, 2, 3, 4, 5, 6])
b = a.reshape((2, 3))
print(b)  # 輸出 [[1 2 3]
          #      [4 5 6]]

登錄后復(fù)制

    numpy.transpose

函數(shù)原型:numpy.transpose(a, axes=None)

功能描述:對(duì)數(shù)組進(jìn)行轉(zhuǎn)置操作。

代碼實(shí)例:

import numpy as np

a = np.array([[1, 2, 3], [4, 5, 6]])
b = np.transpose(a)
print(b)  # 輸出 [[1 4]
          #      [2 5]
          #      [3 6]]

登錄后復(fù)制

    numpy.concatenate

函數(shù)原型:numpy.concatenate((a1, a2, …), axis=0)

功能描述:對(duì)數(shù)組進(jìn)行拼接操作。

代碼實(shí)例:

import numpy as np

a = np.array([[1, 2], [3, 4]])
b = np.array([[5, 6], [7, 8]])
c = np.concatenate((a, b), axis=0)
print(c)  # 輸出 [[1 2] 
          #      [3 4] 
          #      [5 6] 
          #      [7 8]]

登錄后復(fù)制

三、數(shù)組的計(jì)算

    numpy.abs

函數(shù)原型:numpy.abs(x, args, *kwargs)

功能描述:計(jì)算數(shù)組中各元素的絕對(duì)值。

代碼實(shí)例:

import numpy as np

a = np.array([-1, 2, -3])
b = np.abs(a)
print(b)  # 輸出 [1 2 3]

登錄后復(fù)制

    numpy.round

函數(shù)原型:numpy.round(a, decimals=0, out=None)

功能描述:對(duì)數(shù)組中的元素進(jìn)行四舍五入。

代碼實(shí)例:

import numpy as np

a = np.array([1.3, 2.6, 3.2])
b = np.round(a)
print(b)  # 輸出 [1. 3. 3.]

登錄后復(fù)制

    numpy.sum

函數(shù)原型:numpy.sum(a, axis=None)

功能描述:計(jì)算數(shù)組中各元素之和。

代碼實(shí)例:

import numpy as np

a = np.array([[1, 2], [3, 4]])
b = np.sum(a, axis=0)
print(b)  # 輸出 [4 6]

登錄后復(fù)制

四、常用數(shù)學(xué)函數(shù)

    numpy.exp

函數(shù)原型:numpy.exp(x, args, *kwargs)

功能描述:計(jì)算數(shù)組中各元素的指數(shù)函數(shù)值。

代碼實(shí)例:

import numpy as np

a = np.array([1, 2, 3])
b = np.exp(a)
print(b)  # 輸出 [ 2.71828183  7.3890561  20.08553692]

登錄后復(fù)制

    numpy.log

函數(shù)原型:numpy.log(x, args, *kwargs)

功能描述:計(jì)算數(shù)組中各元素的自然對(duì)數(shù)。

代碼實(shí)例:

import numpy as np

a = np.array([1, 2, 3])
b = np.log(a)
print(b)  # 輸出 [0.         0.69314718 1.09861229]

登錄后復(fù)制

    numpy.sqrt

函數(shù)原型:numpy.sqrt(x, args, *kwargs)

功能描述:計(jì)算數(shù)組中各元素的平方根。

代碼實(shí)例:

import numpy as np

a = np.array([1, 4, 9])
b = np.sqrt(a)
print(b)  # 輸出 [1. 2. 3.]

登錄后復(fù)制

五、實(shí)際應(yīng)用場(chǎng)景

    模擬多項(xiàng)式函數(shù)
import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(-5, 5, num=50)
y = np.power(x, 3) - 3 * np.power(x, 2) + 2 * x + 1

plt.plot(x, y)
plt.show()

登錄后復(fù)制

    數(shù)組加權(quán)求和
import numpy as np

a = np.array([1, 2, 3, 4])
b = np.array([0.1, 0.2, 0.3, 0.4])

result = np.sum(a * b)
print(result)  # 輸出 2.0

登錄后復(fù)制

    對(duì)數(shù)組進(jìn)行排序
import numpy as np

a = np.array([3, 2, 1, 4])
b = np.sort(a)

print(b)  # 輸出 [1 2 3 4]

登錄后復(fù)制

總結(jié):

本篇文章介紹了Numpy庫(kù)的一些常用函數(shù)和應(yīng)用場(chǎng)景,包括數(shù)組的創(chuàng)建、操作、計(jì)算,以及一些數(shù)學(xué)函數(shù)。我們可以根據(jù)實(shí)際應(yīng)用場(chǎng)景靈活使用這些函數(shù),讓數(shù)據(jù)處理更加高效便捷。建議讀者自己動(dòng)手編寫(xiě)代碼實(shí)踐一下,加深對(duì)Numpy庫(kù)的理解和掌握。

分享到:
標(biāo)簽:numpy庫(kù) 實(shí)踐指南 常用函數(shù)
用戶(hù)無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過(guò)答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定