~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/elementary/asinhm.man

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH asinhm 1 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
asinhm - matrix hyperbolic inverse sine
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
t=asinhm(x)
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 10
11
 
x,t
12
 
: real or complex square matrix
13
 
.SH DESCRIPTION
14
 
asinhm is the matrix hyperbolic  inverse sine  of the matrix x.
15
 
Uses the formula \fVt=logm(x+sqrtm(x*x+eye()))\fR.
16
 
Results may be not reliable for non-symmetric matrix.
17
 
.SH EXAMPLE
18
 
.nf
19
 
A=[1,2;2,3]
20
 
sinhm(asinhm(A))
21
 
.fi
22
 
.SH SEE ALSO
23
 
asinh, logm, sqrtm
24
 
 
25
 
 
26
 
 
27
 
 
28