コード例 #1
0
ファイル: Angle.cs プロジェクト: Bery0za/Methematica
 public Real Sinh()
 {
     return(Math.Sinh(Radians));
 }
コード例 #2
0
ファイル: Math.cs プロジェクト: zjloscar/Dynamo
 public static double Sinh(double value)
 {
     return(CSMath.Sinh(value));
 }
コード例 #3
0
ファイル: Math.cs プロジェクト: venusdharan/Dynamo
 /// <summary>
 ///     Finds the hyperbolic sine of an angle (radians).
 /// </summary>
 /// <param name="angle">An angle in radians.</param>
 /// <returns name="sinh">Hyperbolic sine of the angle.</returns>
 /// <search>hyperbolic</search>
 public static double Sinh(double angle)
 {
     return(CSMath.Sinh(angle));
 }
コード例 #4
0
 /// <inheritdoc cref="IHyperbolicFunctions{TSelf}.Sinh(TSelf)" />
 public static double Sinh(double x) => Math.Sinh(x);
コード例 #5
0
 static double IFloatingPoint <double> .Sinh(double x)
 => Math.Sinh(x);
コード例 #6
0
 public static float Sinh(float x)
 {
     return((float)Math.Sinh(x));
 }
コード例 #7
0
 public static nfloat Sinh(nfloat value)
 {
     return((nfloat)Math.Sinh((double)value));
 }