You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Matrix Structure > Matrix Methods > Cosh Method > Matrix.Cosh Method ()
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Matrix.Cosh Method ()

Hyperbolic cosine.

Syntax
C#
Visual Basic
public TMtxVec Cosh();

Calculate the hyperbolic cosine of all caling object elements in-place.

var a,b: Matrix; begin a.SetIt(2,2,False,[1,1.5,2,0.3]); a.Cosh; //or a := Cosh(a); //internally becomes a.Cosh (in-place operation) b.Cosh(a); b := Cosh(a); end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!