Changeset 285 for Include/Classes/System/Math.ab
- Timestamp:
- Jul 26, 2007, 5:43:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Math.ab
r268 r285 172 172 End If 173 173 End If 174 Dim i As Long, k As Long 175 Dim x2 As Double, w As Double 176 174 Dim k As Long 177 175 If x >= 0 Then 178 176 k = Fix(x / _System_LOG2 + 0.5) … … 183 181 x -= k * _System_LOG2 184 182 185 x2 = x * x186 w = x2 / 22187 188 i = 18183 Dim x2 = x * x 184 Dim w = x2 / 22 185 186 Dim i = 18 189 187 While i >= 6 190 188 w = x2 / (w + i)
Note:
See TracChangeset
for help on using the changeset viewer.