借助np.multivariate_normal()
方法,我們可以獲得多元正態值數組np.multivariate_normal()
方法。
用法:np.multivariate_normal(mean, matrix, size)
返回:Return the array of multivariate normal values.
範例1:
在這個例子中,我們可以通過使用np.multivariate_normal()
方法,我們可以使用此方法獲得多元正態值數組。
# import numpy
import numpy as np
mean = [1, 2]
matrix = [[5, 0], [0, 5]]
# using np.multinomial() method
gfg = np.random.multivariate_normal(mean, matrix, 10)
print(gfg)
輸出:
[[ 6.24847794 6.57894103]
[ 1.24114594 3.22013831]
[ 3.0660329 2.1442572 ]
[ 0.3239289 2.79949784]
[-1.42964186 1.11846394]
[-0.08521476 0.74518872]
[ 1.42307847 3.27995017]
[ 3.08412374 0.45869097]
[ 2.2158498 2.97014443]
[ 1.77583875 0.57446964]]
範例2:
# import numpy
import numpy as np
mean = [0, 0, 0]
matrix = [[1, 0, 0], [0, 1, 0], [0, 0, 1]]
# using np.multinomial() method
gfg = np.random.multivariate_normal(mean, matrix, 5)
print(gfg)
輸出:
[[-2.21792571 -1.04526811 -0.4586839 ]
[ 0.15760965 0.83934119 -0.52943583]
[-0.9978205 0.79594411 -0.00937 ]
[-0.16882821 0.1727549 0.14002367]
[-1.34406079 1.03498375 0.17620708]]
相關用法
- Python Numpy np.fft()用法及代碼示例
- Python numpy.ma.ids()用法及代碼示例
- Python Numpy np.hermeroots()用法及代碼示例
- Python Numpy np.lagvander()用法及代碼示例
- Python Numpy np.lagadd()用法及代碼示例
- Python Numpy np.lagdiv()用法及代碼示例
- Python Numpy np.lagsub()用法及代碼示例
- Python Numpy np.lagmul()用法及代碼示例
- Python Numpy np.hermegrid2d()用法及代碼示例
- Python Numpy np.lagone()用法及代碼示例
- Python Numpy np.lagzero()用法及代碼示例
- Python Numpy np.lagcompanion()用法及代碼示例
- Python Numpy np.lag2poly()用法及代碼示例
- Python Numpy np.hermegrid3d()用法及代碼示例
- Python Numpy np.hermefromroots()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | Numpy np.multivariate_normal() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。