小編給大家分享一下python建立全零數(shù)組的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè),成都做網(wǎng)站公司-創(chuàng)新互聯(lián)建站已向數(shù)千家企業(yè)提供了,網(wǎng)站設(shè)計(jì),網(wǎng)站制作,網(wǎng)絡(luò)營銷等服務(wù)!設(shè)計(jì)與技術(shù)結(jié)合,多年網(wǎng)站推廣經(jīng)驗(yàn),合理的價(jià)格為您打造企業(yè)品質(zhì)網(wǎng)站。
在python中,可以使用“numpy.zeros()”命令建立全零數(shù)組;語法為“numpy.zeros(shape,dtype=float,order='C')”。
語句格式:
numpy.zeros(shape, dtype=float, order='C')
參數(shù)說明:
shape:整型或元素為整型的序列,表示生成的新數(shù)組的shape,如(2,3)或 2。
dtype:生成數(shù)組的數(shù)據(jù)格式,如numpy.int8。默認(rèn)為numpy.float64。
order:{'C', 'F'}可選,是否將多維數(shù)據(jù)存儲為C-或Fortran-contiguous(按行或按列)順序。
返回值:ndarray,一個(gè)指定了shape, dtype, order的零數(shù)組。
示例見下:
第四個(gè)例子看起來很方便。
Numpy文檔原文:
numpy.zeros numpy.zeros(shape, dtype=float, order='C') Return a new array of given shape and type, filled with zeros. Parameters: shape : int or sequence of ints Shape of the new array, e.g., (2, 3) or 2. dtype : data-type, optional The desired data-type for the array, e.g., numpy.int8. Default is numpy.float64. order : {‘C’, ‘F’}, optional Whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory. Returns: out : ndarray
Array of zeros with the given shape, dtype, and order.
#指定長度的一維數(shù)組 >>> np.zeros(5) array([ 0., 0., 0., 0., 0.]) #指定數(shù)據(jù)類型,指定長度的一維數(shù)組 >>> np.zeros((5,), dtype=int) array([0, 0, 0, 0, 0]) #二維數(shù)組 >>> np.zeros((2, 1)) array([[ 0.], [ 0.]]) >>> s = (2,2) >>> np.zeros(s) array([[ 0., 0.], [ 0., 0.]]) #指定dtype >>> np.zeros((2,), dtype=[('x', 'i4'), ('y', 'i4')]) # custom dtype array([(0, 0), (0, 0)], dtype=[('x', '<i4'), ('y', '<i4')])
看完了這篇文章,相信你對python建立全零數(shù)組的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
當(dāng)前題目:python建立全零數(shù)組的方法
網(wǎng)站鏈接:http://jinyejixie.com/article12/gdpedc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、定制開發(fā)、網(wǎng)頁設(shè)計(jì)公司、網(wǎng)站導(dǎo)航、網(wǎng)站設(shè)計(jì)、網(wǎng)站排名
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)