|
| 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 | +# acscf |
| 22 | + |
| 23 | +> Compute the [arccosecant][arccosecant] of a single-precision floating-point number. |
| 24 | +
|
| 25 | +<section class="usage"> |
| 26 | + |
| 27 | +## Usage |
| 28 | + |
| 29 | +```javascript |
| 30 | +var acscf = require( '@stdlib/math/base/special/acscf' ); |
| 31 | +``` |
| 32 | + |
| 33 | +#### acscf( x ) |
| 34 | + |
| 35 | +Computes the [arccosecant][arccosecant] of a single-precision floating-point number. |
| 36 | + |
| 37 | +```javascript |
| 38 | +var v = acscf( 1.0 ); |
| 39 | +// returns ~1.57 |
| 40 | + |
| 41 | +v = acscf( 3.141592653589793 ); |
| 42 | +// returns ~0.32 |
| 43 | + |
| 44 | +v = acscf( -3.141592653589793 ); |
| 45 | +// returns ~-0.32 |
| 46 | +``` |
| 47 | + |
| 48 | +If `|x| < 1`, the function returns `NaN`. |
| 49 | + |
| 50 | +```javascript |
| 51 | +var v = acscf( 0.5 ); |
| 52 | +// returns NaN |
| 53 | +``` |
| 54 | + |
| 55 | +</section> |
| 56 | + |
| 57 | +<!-- /.usage --> |
| 58 | + |
| 59 | +<section class="examples"> |
| 60 | + |
| 61 | +## Examples |
| 62 | + |
| 63 | +<!-- eslint no-undef: "error" --> |
| 64 | + |
| 65 | +```javascript |
| 66 | +var linspace = require( '@stdlib/array/base/linspace' ); |
| 67 | +var acscf = require( '@stdlib/math/base/special/acscf' ); |
| 68 | + |
| 69 | +var x = linspace( 1.1, 5.1, 100 ); |
| 70 | + |
| 71 | +var i; |
| 72 | +for ( i = 0; i < x.length; i++ ) { |
| 73 | + console.log( acscf( x[ i ] ) ); |
| 74 | +} |
| 75 | +``` |
| 76 | + |
| 77 | +</section> |
| 78 | + |
| 79 | +<!-- /.examples --> |
| 80 | + |
| 81 | +<!-- C interface documentation. --> |
| 82 | + |
| 83 | +* * * |
| 84 | + |
| 85 | +<section class="c"> |
| 86 | + |
| 87 | +## C APIs |
| 88 | + |
| 89 | +<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> |
| 90 | + |
| 91 | +<section class="intro"> |
| 92 | + |
| 93 | +</section> |
| 94 | + |
| 95 | +<!-- /.intro --> |
| 96 | + |
| 97 | +<!-- C usage documentation. --> |
| 98 | + |
| 99 | +<section class="usage"> |
| 100 | + |
| 101 | +### Usage |
| 102 | + |
| 103 | +```c |
| 104 | +#include "stdlib/math/base/special/acscf.h" |
| 105 | +``` |
| 106 | + |
| 107 | +#### stdlib_base_acscf( x ) |
| 108 | + |
| 109 | +Computes the [arccosecant][arccosecant] of a single-precision floating-point number. |
| 110 | + |
| 111 | +```c |
| 112 | +float out = stdlib_base_acscf( 1.0f ); |
| 113 | +// returns ~1.57f |
| 114 | +``` |
| 115 | + |
| 116 | +The function accepts the following arguments: |
| 117 | + |
| 118 | +- **x**: `[in] float` input value. |
| 119 | + |
| 120 | +```c |
| 121 | +float stdlib_base_acscf( const float x ); |
| 122 | +``` |
| 123 | +
|
| 124 | +</section> |
| 125 | +
|
| 126 | +<!-- /.usage --> |
| 127 | +
|
| 128 | +<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> |
| 129 | +
|
| 130 | +<section class="notes"> |
| 131 | +
|
| 132 | +</section> |
| 133 | +
|
| 134 | +<!-- /.notes --> |
| 135 | +
|
| 136 | +<!-- C API usage examples. --> |
| 137 | +
|
| 138 | +<section class="examples"> |
| 139 | +
|
| 140 | +### Examples |
| 141 | +
|
| 142 | +```c |
| 143 | +#include "stdlib/math/base/special/acscf.h" |
| 144 | +#include <stdio.h> |
| 145 | +
|
| 146 | +int main( void ) { |
| 147 | + const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.56f, 0.56f, 1.67f, 2.78f, 3.89f, 5.0f }; |
| 148 | + |
| 149 | + float v; |
| 150 | + int i; |
| 151 | + for ( i = 0; i < 10; i++ ) { |
| 152 | + v = stdlib_base_acscf( x[ i ] ); |
| 153 | + printf( "acsc(%f) = %f\n", x[ i ], v ); |
| 154 | + } |
| 155 | +} |
| 156 | +``` |
| 157 | + |
| 158 | +</section> |
| 159 | + |
| 160 | +<!-- /.examples --> |
| 161 | + |
| 162 | +</section> |
| 163 | + |
| 164 | +<!-- /.c --> |
| 165 | + |
| 166 | +<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> |
| 167 | + |
| 168 | +<section class="related"> |
| 169 | + |
| 170 | +</section> |
| 171 | + |
| 172 | +<!-- /.related --> |
| 173 | + |
| 174 | +<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> |
| 175 | + |
| 176 | +<section class="links"> |
| 177 | + |
| 178 | +[arccosecant]: https://en.wikipedia.org/wiki/Inverse_trigonometric_functions |
| 179 | + |
| 180 | +</section> |
| 181 | + |
| 182 | +<!-- /.links --> |
0 commit comments