Learn R Programming

EigenR (version 1.2.3)

Eigen_sinh: Matrix hyperbolic sine

Description

Matrix hyperbolic sine of a real or complex square matrix.

Usage

Eigen_sinh(M)

Arguments

M

a square matrix, real or complex

Value

The matrix hyperbolic sine of M.

Examples

Run this code
# NOT RUN {
library(EigenR)
M <- toeplitz(c(1,2,3))
Eigen_sinh(M)
(Eigen_exp(M) - Eigen_exp(-M)) / 2  # identical
# }

Run the code above in your browser using DataLab