|
| 1 | +<!-- |
| 2 | +
|
| 3 | +@license Apache-2.0 |
| 4 | +
|
| 5 | +Copyright (c) 2024 The Stdlib Authors. |
| 6 | +
|
| 7 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | +you may not use this file except in compliance with the License. |
| 9 | +You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | +Unless required by applicable law or agreed to in writing, software |
| 14 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | +See the License for the specific language governing permissions and |
| 17 | +limitations under the License. |
| 18 | +
|
| 19 | +--> |
| 20 | + |
| 21 | +# asecdf |
| 22 | + |
| 23 | +> Compute the [arcsecant][arcsecant] (in degrees) of a single-precision floating-point number. |
| 24 | +
|
| 25 | +<section class="usage"> |
| 26 | + |
| 27 | +## Usage |
| 28 | + |
| 29 | +```javascript |
| 30 | +var asecdf = require( '@stdlib/math/base/special/asecdf' ); |
| 31 | +``` |
| 32 | + |
| 33 | +#### asecdf( x ) |
| 34 | + |
| 35 | +Computes the [arcsecant][arcsecant] (in degrees) of a single-precision floating-point number. |
| 36 | + |
| 37 | +```javascript |
| 38 | +var sqrtf = require( '@stdlib/math/base/special/sqrtf' ); |
| 39 | + |
| 40 | +var v = asecdf( Infinity ); |
| 41 | +// returns 90.0 |
| 42 | + |
| 43 | +v = asecdf( 2.0 * sqrtf( 3.0 ) / 3.0 ); |
| 44 | +// returns ~30.0 |
| 45 | + |
| 46 | +v = asecdf( sqrtf( 2.0 ) ); |
| 47 | +// returns 45.0 |
| 48 | + |
| 49 | +v = asecdf( 2.0 ); |
| 50 | +// returns ~60.0 |
| 51 | + |
| 52 | +v = asecdf( 1.0 ); |
| 53 | +// returns 0.0 |
| 54 | + |
| 55 | +v = asecdf( NaN ); |
| 56 | +// returns NaN |
| 57 | +``` |
| 58 | + |
| 59 | +The domain of `x` is restricted to the intervals `[-inf, -1]` and `[1, inf]`. For `x` outside of these intervals, the function returns `NaN`. |
| 60 | + |
| 61 | +```javascript |
| 62 | +var v = asecdf( -0.5 ); |
| 63 | +// returns NaN |
| 64 | + |
| 65 | +v = asecdf( 0.5 ); |
| 66 | +// returns NaN |
| 67 | +``` |
| 68 | + |
| 69 | +</section> |
| 70 | + |
| 71 | +<!-- /.usage --> |
| 72 | + |
| 73 | +<section class="examples"> |
| 74 | + |
| 75 | +## Examples |
| 76 | + |
| 77 | +<!-- eslint no-undef: "error" --> |
| 78 | + |
| 79 | +```javascript |
| 80 | +var linspace = require( '@stdlib/array/base/linspace' ); |
| 81 | +var asecdf = require( '@stdlib/math/base/special/asecdf' ); |
| 82 | + |
| 83 | +var x = linspace( 1.1, 5.1, 100 ); |
| 84 | + |
| 85 | +var i; |
| 86 | +for ( i = 0; i < x.length; i++ ) { |
| 87 | + console.log( asecdf( x[ i ] ) ); |
| 88 | +} |
| 89 | +``` |
| 90 | + |
| 91 | +</section> |
| 92 | + |
| 93 | +<!-- /.examples --> |
| 94 | + |
| 95 | +<!-- C interface documentation. --> |
| 96 | + |
| 97 | +* * * |
| 98 | + |
| 99 | +<section class="c"> |
| 100 | + |
| 101 | +## C APIs |
| 102 | + |
| 103 | +<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> |
| 104 | + |
| 105 | +<section class="intro"> |
| 106 | + |
| 107 | +</section> |
| 108 | + |
| 109 | +<!-- /.intro --> |
| 110 | + |
| 111 | +<!-- C usage documentation. --> |
| 112 | + |
| 113 | +<section class="usage"> |
| 114 | + |
| 115 | +### Usage |
| 116 | + |
| 117 | +```c |
| 118 | +#include "stdlib/math/base/special/asecdf.h" |
| 119 | +``` |
| 120 | + |
| 121 | +#### stdlib_base_asecdf( x ) |
| 122 | + |
| 123 | +Computes the [arcsecant][arcsecant] (in degrees) of a single-precision floating-point number. |
| 124 | + |
| 125 | +```c |
| 126 | +float out = stdlib_base_asecdf( 1.0f ); |
| 127 | +// returns 0.0f |
| 128 | + |
| 129 | +out = stdlib_base_asecdf( 2.0f ); |
| 130 | +// returns ~60.0f |
| 131 | +``` |
| 132 | + |
| 133 | +The function accepts the following arguments: |
| 134 | + |
| 135 | +- **x**: `[in] float` input value. |
| 136 | + |
| 137 | +```c |
| 138 | +float stdlib_base_asecdf( const float x ); |
| 139 | +``` |
| 140 | +
|
| 141 | +</section> |
| 142 | +
|
| 143 | +<!-- /.usage --> |
| 144 | +
|
| 145 | +<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> |
| 146 | +
|
| 147 | +<section class="notes"> |
| 148 | +
|
| 149 | +</section> |
| 150 | +
|
| 151 | +<!-- /.notes --> |
| 152 | +
|
| 153 | +<!-- C API usage examples. --> |
| 154 | +
|
| 155 | +<section class="examples"> |
| 156 | +
|
| 157 | +### Examples |
| 158 | +
|
| 159 | +```c |
| 160 | +#include "stdlib/math/base/special/asecdf.h" |
| 161 | +#include <stdio.h> |
| 162 | +
|
| 163 | +int main( void ) { |
| 164 | + const float x[] = { 1.1f, 1.55f, 1.99f, 2.44f, 2.88f, 3.32f, 3.77f, 4.21f, 4.66f, 5.1f }; |
| 165 | +
|
| 166 | + float v; |
| 167 | + int i; |
| 168 | + for ( i = 0; i < 10; i++ ) { |
| 169 | + v = stdlib_base_asecdf( x[ i ] ); |
| 170 | + printf( "acscd(%f) = %f\n", x[ i ], v ); |
| 171 | + } |
| 172 | +} |
| 173 | +``` |
| 174 | + |
| 175 | +</section> |
| 176 | + |
| 177 | +<!-- /.examples --> |
| 178 | + |
| 179 | +</section> |
| 180 | + |
| 181 | +<!-- /.c --> |
| 182 | + |
| 183 | +<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> |
| 184 | + |
| 185 | +<section class="related"> |
| 186 | + |
| 187 | +</section> |
| 188 | + |
| 189 | +<!-- /.related --> |
| 190 | + |
| 191 | +<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> |
| 192 | + |
| 193 | +<section class="links"> |
| 194 | + |
| 195 | +[arcsecant]: https://en.wikipedia.org/wiki/Inverse_trigonometric_functions |
| 196 | + |
| 197 | +<!-- <related-links> --> |
| 198 | + |
| 199 | +<!-- </related-links> --> |
| 200 | + |
| 201 | +</section> |
| 202 | + |
| 203 | +<!-- /.links --> |
0 commit comments