本文簡要介紹 python 語言中 scipy.sparse.linalg.SuperLU.solve
的用法。
用法:
SuperLU.solve(rhs [, trans ])#
求解具有一個或多個右側的線性方程組。
- rhs: ndarray,形狀(n,)或(n,k)
等式的右手邊
- trans: {‘N’, ‘T’, ‘H’},可選
要解決的係統類型:
'N': A @ x == rhs (default) 'T': A^T @ x == rhs 'H': A^H @ x == rhs
即,正常的、轉置的和厄米特共軛。
- x: ndarray,形狀
rhs.shape
解向量
- x: ndarray,形狀
參數 ::
返回 ::
相關用法
- Python SciPy SuperLU.perm_c用法及代碼示例
- Python SciPy SuperLU.perm_r用法及代碼示例
- Python SciPy ShortTimeFFT.from_dual用法及代碼示例
- Python SciPy SmoothSphereBivariateSpline.ev用法及代碼示例
- Python SciPy ShortTimeFFT.from_window用法及代碼示例
- Python SciPy SmoothBivariateSpline.__call__用法及代碼示例
- Python SciPy ShortTimeFFT.istft用法及代碼示例
- Python SciPy SmoothBivariateSpline.ev用法及代碼示例
- Python SciPy ShortTimeFFT.spectrogram用法及代碼示例
- Python SciPy SmoothSphereBivariateSpline.__call__用法及代碼示例
- Python SciPy interpolate.make_interp_spline用法及代碼示例
- Python SciPy stats.anderson用法及代碼示例
- Python SciPy ClusterNode.pre_order用法及代碼示例
- Python SciPy stats.iqr用法及代碼示例
- Python SciPy FortranFile.read_record用法及代碼示例
- Python SciPy ndimage.correlate用法及代碼示例
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy signal.czt_points用法及代碼示例
- Python SciPy interpolate.krogh_interpolate用法及代碼示例
- Python SciPy ndimage.morphological_gradient用法及代碼示例
- Python SciPy distance.sokalmichener用法及代碼示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代碼示例
- Python SciPy linalg.cdf2rdf用法及代碼示例
- Python SciPy csc_array.diagonal用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.sparse.linalg.SuperLU.solve。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。