Skip to content

Commit eaaad1e

Browse files
chore: update fixtures
1 parent 2283e32 commit eaaad1e

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

lib/node_modules/@stdlib/math/base/special/atan2f/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ float out = stdlib_base_atan2f( 2.0f, 2.0f );
123123

124124
The function accepts the following arguments:
125125

126-
- **y**: `[in] float` - `y` coordinate
127-
- **x**: `[in] float` - `x` coordinate
126+
- **y**: `[in] float` - `y` coordinate.
127+
- **x**: `[in] float` - `x` coordinate.
128128

129129
```c
130130
float stdlib_base_atan2f( const float y, const float x );

lib/node_modules/@stdlib/math/base/special/atan2f/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* ```
3131
*/
3232

33+
#include "stdlib/math/base/special/atan2f.h"
3334
#include "stdlib/math/base/assert/is_infinitef.h"
3435
#include "stdlib/math/base/special/copysignf.h"
3536
#include "stdlib/number/float32/base/signbit.h"

lib/node_modules/@stdlib/math/base/special/atan2f/test/fixtures/julia/negative_negative.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/atan2f/test/fixtures/julia/negative_positive.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/atan2f/test/fixtures/julia/positive_positive.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/atan2f/test/fixtures/julia/runner.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ julia> gen( x, y, \"data.json\" );
4040
function gen( x, y, name )
4141
z = Array{Float32}( undef, length(x) );
4242
for i in eachindex(x)
43-
z[ i ] = atan2f.( y[i], x[i] );
43+
z[ i ] = atan.( y[i], x[i] );
4444
end
4545

4646
# Store data to be written to file as a collection:

0 commit comments

Comments
 (0)