ビルトイン関数を見直しました。#47
Merged
Merged
Conversation
Owner
javecs
commented
Apr 18, 2017
| 関数名 | 説明 | 例 | 結果 |
|---|---|---|---|
| sin | 指定された角度の正弦(サイン)を返します。 | sin(1) | 0.8414709848078965 |
| cos | 指定された角度の余弦(コサイン)を返します。 | cos(1) | 0.5403023058681398 |
| tan | 指定された角度の正接(タンジェント)を返します。 | tan(1) | 1.5574077246549023 |
| asin | 指定された値の逆正弦(アーク・サイン)を返します。 | asin(1) | 1.5707963267948966 |
| acos | 指定された値の逆余弦(アーク・コサイン)を返します。 | acos(0) | 1.5707963267948966 |
| atan | 指定された値の逆正接(アーク・タンジェント)を返します。 | atan(1) | 0.7853981633974483 |
| sinh | double値の双曲線正弦を返します。 | sinh(1) | 1.1752011936438014 |
| cosh | double値の双曲線余弦を返します。 | cosh(1) | 1.543080634815244 |
| tanh | double値の双曲線正接を返します。 | tanh(1) | 0.7615941559557649 |
| exp | オイラー数eをdouble値で累乗した値を返します。 | exp(1) | 2.718281828459045 |
| log | 指定されたdouble値の自然対数(底はe)を返します。 | log(2) | 0.6931471805599453 |
| log10 | double値の10を底とする対数を返します。 | log10(2) | 0.3010299956639812 |
| sqrt | double値の正しく丸めた正の平方根を返します。 | sqrt(2) | 0.3010299956639812 |
| rad | 度で計測した角度を、相当するラジアンに変換します。 | rad(1) | 0.017453292519943295 |
| deg | ラジアンで計測した角度を、相当する度に変換します。 | deg(1) | 57.29577951308232 |
Codecov Report
@@ Coverage Diff @@
## master #47 +/- ##
============================================
- Coverage 71.97% 71.49% -0.48%
Complexity 67 67
============================================
Files 8 8
Lines 421 414 -7
Branches 42 42
============================================
- Hits 303 296 -7
Misses 73 73
Partials 45 45
Continue to review full report at Codecov.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.