scipy.linalg.

tanm#

scipy.linalg.tanm(A)[source]#

计算矩阵正切。

此例程使用 expm 计算矩阵指数。

参数:
A(N, N) array_like

输入数组。

返回值:
tanm(N, N) ndarray

A 的矩阵正切

示例

>>> import numpy as np
>>> from scipy.linalg import tanm, sinm, cosm
>>> a = np.array([[1.0, 3.0], [1.0, 4.0]])
>>> t = tanm(a)
>>> t
array([[ -2.00876993,  -8.41880636],
       [ -2.80626879, -10.42757629]])

验证 tanm(a) = sinm(a).dot(inv(cosm(a)))

>>> s = sinm(a)
>>> c = cosm(a)
>>> s.dot(np.linalg.inv(c))
array([[ -2.00876993,  -8.41880636],
       [ -2.80626879, -10.42757629]])