Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.0 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab Help >> Elementary Functions > Trigonometry > Matrix-wise processing > 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
Report an issue
<< Matrix-wise processing Matrix-wise processing acosm >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 25 08:49:19 CET 2020