本文簡要介紹 python 語言中 scipy.linalg.find_best_blas_type
的用法。
用法:
scipy.linalg.find_best_blas_type(arrays=(), dtype=None)#
找到best-matching BLAS/LAPACK 類型。
數組用於確定 BLAS 例程的最佳前綴。
- arrays: ndarrays 序列,可選
可以給出數組來確定 BLAS 例程的最佳前綴。如果沒有給出,將使用雙精度例程,否則將使用數組中最通用的類型。
- dtype: str 或 dtype,可選
數據類型說明符。如果數組非空,則不使用。
- prefix: str
BLAS/LAPACK 前綴字符。
- dtype: 類型
推斷的 Numpy 數據類型。
- prefer_fortran: bool
是否更喜歡 Fortran 順序例程而不是 C 順序。
參數 ::
返回 ::
例子:
>>> import numpy as np >>> import scipy.linalg.blas as bla >>> rng = np.random.default_rng() >>> a = rng.random((10,15)) >>> b = np.asfortranarray(a) # Change the memory layout order >>> bla.find_best_blas_type((a,)) ('d', dtype('float64'), False) >>> bla.find_best_blas_type((a*1j,)) ('z', dtype('complex128'), False) >>> bla.find_best_blas_type((b,)) ('d', dtype('float64'), True)
相關用法
- Python SciPy linalg.fiedler用法及代碼示例
- Python SciPy linalg.fiedler_companion用法及代碼示例
- Python SciPy linalg.factorized用法及代碼示例
- Python SciPy linalg.fractional_matrix_power用法及代碼示例
- Python SciPy linalg.funm用法及代碼示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代碼示例
- Python SciPy linalg.cdf2rdf用法及代碼示例
- Python SciPy linalg.LaplacianNd用法及代碼示例
- Python SciPy linalg.solve_circulant用法及代碼示例
- Python SciPy linalg.polar用法及代碼示例
- Python SciPy linalg.clarkson_woodruff_transform用法及代碼示例
- Python SciPy linalg.rsf2csf用法及代碼示例
- Python SciPy linalg.hessenberg用法及代碼示例
- Python SciPy linalg.tril用法及代碼示例
- Python SciPy linalg.triu用法及代碼示例
- Python SciPy linalg.svd用法及代碼示例
- Python SciPy linalg.ishermitian用法及代碼示例
- Python SciPy linalg.invhilbert用法及代碼示例
- Python SciPy linalg.lu_factor用法及代碼示例
- Python SciPy linalg.SuperLU用法及代碼示例
- Python SciPy linalg.lsqr用法及代碼示例
- Python SciPy linalg.cho_factor用法及代碼示例
- Python SciPy linalg.eig_banded用法及代碼示例
- Python SciPy linalg.tanhm用法及代碼示例
- Python SciPy linalg.orthogonal_procrustes用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.linalg.find_best_blas_type。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。