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

« back to all changes in this revision

Viewing changes to man/elementary/coshm.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 coshm 1 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
coshm - matrix hyperbolic cosine
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
t=coshm(x)
8
 
.fi
9
 
.SH PARAMETERS
10
 
.TP 10
11
 
x,t
12
 
: real or complex square matrix
13
 
.SH DESCRIPTION
14
 
coshm is the matrix hyperbolic  cosine  of the matrix x.
15
 
\fVt=(expm(x)+expm(-x))/2\fR. Result may be inaccurate for nonsymmetric
16
 
matrix.
17
 
.SH EXAMPLE
18
 
.nf
19
 
A=[1,2;2,4]
20
 
acoshm(coshm(A))
21
 
.fi
22
 
.SH SEE ALSO
23
 
cosh, expm
24
 
 
25
 
 
26
 
 
27