Re: Angle Units For Trig Functions

Liste des GroupesRevenir à cl fortran 
Sujet : Re: Angle Units For Trig Functions
De : sgk (at) *nospam* REMOVEtroutmask.apl.washington.edu (Steven G. Kargl)
Groupes : comp.lang.fortran
Date : 24. Oct 2024, 03:17:15
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vfcanb$2beml$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13
User-Agent : Pan/0.145 (Duplicitous mercenary valetism; d7e168a git.gnome.org/pan2)
On Wed, 23 Oct 2024 23:13:38 +0000, Lawrence D'Oliveiro wrote:

On Wed, 23 Oct 2024 16:38:41 -0600, Louis Krupp wrote:
 
Seriously, though, if you're interfacing with people, degrees are easier
and more familiar than radians.
 
But trig calculations are easier in radians. And it is easy to convert
back and forth, as I explained in the posting that started this thread.

Easier?

program foo
   real*8 x, y
   real*8, parameter :: deg2rad = 4 * atan(1.d0) / 180
   x = 137*180
   y = x * deg2rad
   print *, sind(x), sin(y)
end program foo

% gfcx -o z -Wall a.f90 && ./z
  -0.0000000000000000       -9.8590724568376608E-016

One of these values is wrong.

For x = (n + 1) * 180 and n < 2**23, sind(x) = +-0, exactly.
For y = x * pi / 180, sin(x) never equals +-0.

You seem to be missing that argument reduction for sind(x)
is much easier than argument reduction for sin(x). 

--
steve

Date Sujet#  Auteur
20 Oct 24 * Angle Units For Trig Functions26Lawrence D'Oliveiro
20 Oct 24 +- Re: Angle Units For Trig Functions1yeti
20 Oct 24 `* Re: Angle Units For Trig Functions24Steven G. Kargl
22 Oct 24  `* Re: Angle Units For Trig Functions23Lawrence D'Oliveiro
22 Oct 24   +* Re: Angle Units For Trig Functions5Steven G. Kargl
22 Oct 24   i`* Re: Angle Units For Trig Functions4Lawrence D'Oliveiro
23 Oct 24   i `* Re: Angle Units For Trig Functions3Steven G. Kargl
23 Oct 24   i  `* Re: Angle Units For Trig Functions2Lawrence D'Oliveiro
23 Oct 24   i   `- Re: Angle Units For Trig Functions1Steven G. Kargl
23 Oct 24   `* Re: Angle Units For Trig Functions17Lawrence D'Oliveiro
23 Oct 24    `* Re: Angle Units For Trig Functions16David Jones
23 Oct 24     `* Re: Angle Units For Trig Functions15Lawrence D'Oliveiro
23 Oct 24      `* Re: Angle Units For Trig Functions14R Daneel Olivaw
23 Oct 24       `* Re: Angle Units For Trig Functions13Lawrence D'Oliveiro
23 Oct 24        `* Re: Angle Units For Trig Functions12Steven G. Kargl
23 Oct 24         `* Re: Angle Units For Trig Functions11Neil
24 Oct 24          +- Re: Angle Units For Trig Functions1Steven G. Kargl
24 Oct 24          +* Re: Angle Units For Trig Functions8Lawrence D'Oliveiro
24 Oct 24          i+* Re: Angle Units For Trig Functions6Steven G. Kargl
24 Oct 24          ii`* Re: Angle Units For Trig Functions5Lawrence D'Oliveiro
24 Oct 24          ii `* Re: Angle Units For Trig Functions4Steven G. Kargl
24 Oct 24          ii  `* Re: Angle Units For Trig Functions3Lawrence D'Oliveiro
24 Oct 24          ii   `* Re: Angle Units For Trig Functions2Steven G. Kargl
24 Oct 24          ii    `- Re: Angle Units For Trig Functions1Lawrence D'Oliveiro
24 Oct 24          i`- Re: Angle Units For Trig Functions1Lawrence D'Oliveiro
24 Oct 24          `- Re: Angle Units For Trig Functions1Lawrence D'Oliveiro

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal