annotate scripts/elfun/sind.m @ 29160:ee20ff0ceb60

sind.m: Overhaul function for improved accuracy with large inputs. * sind.m: More explicitly describe the advantage of sind() in documentation. Unwrap input in to domain [0, 360) which improves accuracy for large arguments. Zero out inputs which are a multiple of 180 degrees before calling sin() function for improved performance. Expand BIST tests.
author Rik <rik@octave.org>
date Mon, 07 Dec 2020 17:32:04 -0800
parents 90fea9cc9caa
children 9193e7c990ea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ########################################################################
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 ##
27919
1891570abac8 update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 27918
diff changeset
3 ## Copyright (C) 2006-2020 The Octave Project Developers
27918
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 26376
diff changeset
4 ##
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 ## See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 ## distribution or <https://octave.org/copyright/>.
6239
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
7 ##
6440
98ee80702bca [project @ 2007-03-23 15:13:19 by jwe]
jwe
parents: 6239
diff changeset
8 ## This file is part of Octave.
6239
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
9 ##
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
10 ## Octave is free software: you can redistribute it and/or modify it
6440
98ee80702bca [project @ 2007-03-23 15:13:19 by jwe]
jwe
parents: 6239
diff changeset
11 ## under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
12 ## the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
13 ## (at your option) any later version.
6440
98ee80702bca [project @ 2007-03-23 15:13:19 by jwe]
jwe
parents: 6239
diff changeset
14 ##
98ee80702bca [project @ 2007-03-23 15:13:19 by jwe]
jwe
parents: 6239
diff changeset
15 ## Octave is distributed in the hope that it will be useful, but
98ee80702bca [project @ 2007-03-23 15:13:19 by jwe]
jwe
parents: 6239
diff changeset
16 ## WITHOUT ANY WARRANTY; without even the implied warranty of
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
18 ## GNU General Public License for more details.
6239
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
19 ##
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
20 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6440
diff changeset
21 ## along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
22 ## <https://www.gnu.org/licenses/>.
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 ##
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ########################################################################
6239
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
25
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
26 ## -*- texinfo -*-
20852
516bb87ea72e 2015 Code Sprint: remove class of function from docstring for all m-files.
Rik <rik@octave.org>
parents: 20158
diff changeset
27 ## @deftypefn {} {} sind (@var{x})
20158
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19697
diff changeset
28 ## Compute the sine for each element of @var{x} in degrees.
7503499a252b doc: Update docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19697
diff changeset
29 ##
29160
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
30 ## The function is more exact than @code{sin} for multiples of 180 degrees and
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
31 ## returns zero rather than a small value on the order of eps.
9155
ad20b967e1c9 Update section 17.3 (Trigonometry) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents: 7017
diff changeset
32 ## @seealso{asind, sin}
6239
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
33 ## @end deftypefn
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
34
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
35 function y = sind (x)
14220
5a13a75c2457 Use Octave spacing conventions for scripts in elfun/ directory.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
36
28891
de5f2f9a64ff maint: Use same coding style when checking for a minimum of 1 input.
Rik <rik@octave.org>
parents: 28886
diff changeset
37 if (nargin < 1)
6239
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
38 print_usage ();
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
39 endif
14220
5a13a75c2457 Use Octave spacing conventions for scripts in elfun/ directory.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
40
29160
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
41 ## Unwrap multiples so that new domain is [0, 360)
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
42 x = mod (x, 360);
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
43
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
44 ## Integer multiples of pi must be exactly zero
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
45 x(x == 180) = 0;
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
46
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
47 y = sin (x / 180 * pi);
14220
5a13a75c2457 Use Octave spacing conventions for scripts in elfun/ directory.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
48
6239
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
49 endfunction
82185e38eea8 [project @ 2007-01-10 22:53:58 by jwe]
jwe
parents:
diff changeset
50
14220
5a13a75c2457 Use Octave spacing conventions for scripts in elfun/ directory.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
51
29160
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
52 %!assert (sind (10:20:360), sin ([10:20:360] * pi/180), 5*eps)
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
53 %!assert (sind ([-360, -180, 0, 180, 360]) == 0)
ee20ff0ceb60 sind.m: Overhaul function for improved accuracy with large inputs.
Rik <rik@octave.org>
parents: 28896
diff changeset
54 %!assert (sind ([-270, -90, 90, 270]), [1, -1, 1, -1])
14220
5a13a75c2457 Use Octave spacing conventions for scripts in elfun/ directory.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
55
28896
90fea9cc9caa test: Add expected error message <Invalid call> to BIST tests for nargin.
Rik <rik@octave.org>
parents: 28891
diff changeset
56 %!error <Invalid call> sind ()