This PR introduces a suite of unit tests for trigonometric_functions.py located within the within the mathematical functions directory. The primary functions in this file are based around all inverse and standard trigonometry functions (tan/sin/cos).
Functionality Across Diverse Shapes and Types: Verification is done across all supported data types, including integers, unsigned integers, boolean, and different floating-point precisions, for arrays ranging from scalar to four-dimensional.
Error Handling for Unsupported Types: The tests confirm that using unsupported data types, specifically complex numbers and 64-bit floats, appropriately raises runtime errors, highlighting the library's error management capability.
This PR introduces a suite of unit tests for trigonometric_functions.py located within the within the mathematical functions directory. The primary functions in this file are based around all inverse and standard trigonometry functions (tan/sin/cos).
Functionality Across Diverse Shapes and Types: Verification is done across all supported data types, including integers, unsigned integers, boolean, and different floating-point precisions, for arrays ranging from scalar to four-dimensional.
Error Handling for Unsupported Types: The tests confirm that using unsupported data types, specifically complex numbers and 64-bit floats, appropriately raises runtime errors, highlighting the library's error management capability.