Questions tagged [radians]

Questions regarding angular sizes, arguments for trigonometric functions geometry etc.

Radian is a unit of angular measure. It is measured as the ratio between the length of the corresponding arc and its radius. It is often used as an argument to trigonometric function (e.g., sin, cosine etc.). It is also used as an angular measure for frquency analysis of signals (e.g., in Fourier space).

169 questions
-3
votes
4 answers

JAVA sin() output value to radians/degrees

I have this problem: I know Math.sin(someUnknownFloatValue) output value and I really need to know how just from this single Math.sin() output find out what was that actual "someUnknownFloatNumber" that created it - is it possible, isn't there…
errerr
  • 63
  • 8
-3
votes
6 answers

Java is outputting the wrong value for a Math.tan() calculation

Here is the code from both classes, the user has to input the value for two angles and a length for part of a triangle. I understand Java uses radians, but even with a simple conversion either using Math.toDegrees or * 180/Math.Pi it still gets the…
Oli
  • 15
  • 2
  • 3
-4
votes
1 answer

Why Java Math.toRadians() is not accurate and how to solve it?

I'm creating own Turtle app similar to python in Java. The angles taken in the instructions is in degrees. While drawing it, I have to use sin and cos which requires the angle to be in radians. So, I used Math.toRadians(theta). My instructions are…
Ruthvik
  • 790
  • 5
  • 28
-5
votes
1 answer

Scientific Calculator in C#

I am making calculator with c# language with visual studio. I have a problem with converting radians to degrees. I'm currently doing it like this: display.Text=(Math.cos(Convert.ToDouble(display.Text)*( 180 /Math.Pi ))).ToString(); But the…
signal jobs
  • 1
  • 1
  • 4
1 2 3
11
12