Skip to content

Commit

Permalink
Improved documentation for issue #156
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Mar 6, 2024
1 parent 0d49aa6 commit 53e3e33
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/FastMathFunctions/arm_atan2_f16.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ __STATIC_FORCEINLINE float16_t arm_atan_f16(float16_t x)
@par Compute the Arc tangent of y/x:
The sign of y and x are used to determine the right quadrant
and compute the right angle.
and compute the right angle. Returned value is between -Pi and Pi.
*/
arm_status arm_atan2_f16(float16_t y,float16_t x,float16_t *result)
Expand Down
2 changes: 1 addition & 1 deletion Source/FastMathFunctions/arm_atan2_f32.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ __STATIC_FORCEINLINE float32_t arm_atan_f32(float32_t x)
@par Compute the Arc tangent of y/x:
The sign of y and x are used to determine the right quadrant
and compute the right angle.
and compute the right angle. Returned value is between -Pi and Pi.
*/


Expand Down
2 changes: 1 addition & 1 deletion Source/FastMathFunctions/arm_atan2_q15.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ __STATIC_FORCEINLINE q15_t arm_atan_q15(q15_t y,q15_t x)
@par Compute the Arc tangent of y/x:
The sign of y and x are used to determine the right quadrant
and compute the right angle.
and compute the right angle. Returned value is between -Pi and Pi.
*/


Expand Down
2 changes: 1 addition & 1 deletion Source/FastMathFunctions/arm_atan2_q31.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ __STATIC_FORCEINLINE q31_t arm_atan_q31(q31_t y,q31_t x)
@par Compute the Arc tangent of y/x:
The sign of y and x are used to determine the right quadrant
and compute the right angle.
and compute the right angle. Returned value is between -Pi and Pi.
*/


Expand Down

0 comments on commit 53e3e33

Please sign in to comment.