We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c7c53 commit 4dee5d5Copy full SHA for 4dee5d5
lib/node_modules/@stdlib/math/base/special/sind/lib/sind.js
@@ -63,26 +63,21 @@ function sind(x) {
63
x = ((x % 360) + 360) % 360
64
if (x <= 45) {
65
rad = deg2rad(x);
66
- console.log(rad);
67
return kernelSin(rad, 0);
68
}
69
if (x <= 135) {
70
rad = deg2rad(x - 90);
71
72
return kernelCos(rad, 0);
73
74
if (x <= 225) {
75
rad = deg2rad(180 - x);
76
77
78
79
if (x <= 315) {
80
rad = deg2rad(x - 270);
81
82
return -kernelCos(rad, 0);
83
84
rad = deg2rad(360 - x)
85
86
return -kernelSin(rad, 0);
87
88
0 commit comments