File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
lib/node_modules/@stdlib/math/base/special/asinhf Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ var NEAR_ZERO = f32( ONE / HUGE ); // 2**-28
6969*
7070* ```tex
7171* \operatorname{asinh}(x) = \begin{cases}
72- * x & \text{ if } 1+x^2 =1, \\
72+ * x & \text{ if } 1+x^2 = 1, \\
7373* \operatorname{sgn}(x) \cdot \left( \log(x) + \tfrac{\ln}{2} \right) & \text{ if large } |x| \\
7474* \operatorname{sgn}(x) \cdot \log\left( 2 |x| + 1 / ( |x|+ \sqrt{x^2+1} ) \right) & \text{ if } |x| > 2 \\
7575* \operatorname{sgn}(x) \cdot \operatorname{log1p}\left( |x| + \tfrac{x^2}{1 + \sqrt{1+x^2}} \right) & \text{otherwise}
Original file line number Diff line number Diff line change 135135 }
136136 },
137137 "keywords" : [
138- " asinhf " ,
138+ " asinh " ,
139139 " hyperbolic" ,
140140 " inverse" ,
141141 " arcsine" ,
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ static const float NEAR_ZERO = 1.0f / HUGE; // 2**-28
5757*
5858* ```tex
5959* \operatorname{asinh}(x) = \begin{cases}
60- * x & \text{ if } 1+x^2 =1, \\
60+ * x & \text{ if } 1+x^2 = 1, \\
6161* \operatorname{sgn}(x) \cdot \left( \log(x) + \tfrac{\ln}{2} \right) & \text{ if large } |x| \\
6262* \operatorname{sgn}(x) \cdot \log\left( 2 |x| + 1 / ( |x|+ \sqrt{x^2+1} ) \right) & \text{ if } |x| > 2 \\
6363* \operatorname{sgn}(x) \cdot \operatorname{log1p}\left( |x| + \tfrac{x^2}{1 + \sqrt{1+x^2}} \right) & \text{otherwise}
You can’t perform that action at this time.
0 commit comments