Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Elementary Functions > Trigonometry > acoshm

acoshm

matrix hyperbolic inverse cosine

Syntax

t = acoshm(x)

Arguments

x, t

a real or complex square matrix.

Description

acoshm is the matrix hyperbolic inverse cosine of the matrix x. Uses the formula t=logm(x+(x+eye())*sqrtm((x-eye())/(x+eye()))). For non-symmetric matrices result may be inaccurate.

Examples

A=[1,2;3,4];
coshm(acoshm(A))
A(1,1)=A(1,1)+%i;
coshm(acoshm(A))

See Also

  • acosh — hyperbolic cosine inverse
  • logm — square matrix logarithm
  • sqrtm — matrix square root
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:34 CEST 2016