res = tanm(x)
| Parameter | Description |
|---|---|
| x | a numeric value: scalar or square matrix |
| Parameter | Description |
|---|---|
| res | a numeric value: a square matrix |
tanm(x) computes the matrix tangent of x.
A = eye(3, 3);
res = tanm(A)
A = [1, 2; 3, 4];
res = tanm(A)
| Version | Description |
|---|---|
| 1.0.0 | initial version |