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