You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Vector Structure > Vector Methods > Cosh Method > Vector.Cosh Method ()
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Vector.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: Vector; begin a.SetIt(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!