├── .clang-format ├── .clang-tidy ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ ├── BuildTestInstall │ │ └── action.yml │ ├── LinuxEnvironmentSetup │ │ └── action.yml │ └── WindowsEnvironmentSetup │ │ └── action.yml └── workflows │ └── Tests.yml ├── .gitignore ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── cmake ├── NumCppConfig.cmake.in └── NumCppTools.cmake ├── develop ├── CMakeLists.txt ├── NdArray │ ├── NdArrayCore.hpp │ ├── NdArrayIterators.hpp │ ├── TypeTraits.hpp │ ├── Types.hpp │ └── Utils.hpp ├── StaticAnalyis.yml ├── ToDo.md └── main.cpp ├── docs ├── .nojekyll ├── doxygen │ ├── Doxyfile.in │ ├── delete_me.css │ ├── delete_me.html │ ├── doxygen-awesome-css │ │ ├── doxygen-awesome-darkmode-toggle.js │ │ ├── doxygen-awesome-fragment-copy-button.js │ │ ├── doxygen-awesome-interactive-toc.js │ │ ├── doxygen-awesome-paragraph-link.js │ │ ├── doxygen-awesome-sidebar-only-darkmode-toggle.css │ │ ├── doxygen-awesome-sidebar-only.css │ │ ├── doxygen-awesome-tabs.js │ │ └── doxygen-awesome.css │ ├── header.html │ ├── html │ │ ├── NumCppLogoDoxygen.png │ │ ├── _a_e_r_8hpp.html │ │ ├── _a_e_r_8hpp.js │ │ ├── _a_e_r_8hpp_source.html │ │ ├── _a_e_rto_e_c_e_f_8hpp.html │ │ ├── _a_e_rto_e_c_e_f_8hpp.js │ │ ├── _a_e_rto_e_c_e_f_8hpp_source.html │ │ ├── _a_e_rto_e_n_u_8hpp.html │ │ ├── _a_e_rto_e_n_u_8hpp.js │ │ ├── _a_e_rto_e_n_u_8hpp_source.html │ │ ├── _a_e_rto_l_l_a_8hpp.html │ │ ├── _a_e_rto_l_l_a_8hpp.js │ │ ├── _a_e_rto_l_l_a_8hpp_source.html │ │ ├── _a_e_rto_n_e_d_8hpp.html │ │ ├── _a_e_rto_n_e_d_8hpp.js │ │ ├── _a_e_rto_n_e_d_8hpp_source.html │ │ ├── _binary_logger_8hpp.html │ │ ├── _binary_logger_8hpp.js │ │ ├── _binary_logger_8hpp_source.html │ │ ├── _bisection_8hpp.html │ │ ├── _bisection_8hpp.js │ │ ├── _bisection_8hpp_source.html │ │ ├── _boost_interface_8hpp.html │ │ ├── _boost_interface_8hpp_source.html │ │ ├── _boost_numpy_ndarray_helper_8hpp.html │ │ ├── _boost_numpy_ndarray_helper_8hpp_source.html │ │ ├── _boundary_8hpp.html │ │ ├── _boundary_8hpp.js │ │ ├── _boundary_8hpp_source.html │ │ ├── _brent_8hpp.html │ │ ├── _brent_8hpp.js │ │ ├── _brent_8hpp_source.html │ │ ├── _building_8md.html │ │ ├── _cartesian_8hpp.html │ │ ├── _cartesian_8hpp.js │ │ ├── _cartesian_8hpp_source.html │ │ ├── _celestial_8hpp.html │ │ ├── _celestial_8hpp.js │ │ ├── _celestial_8hpp_source.html │ │ ├── _centroid_8hpp.html │ │ ├── _centroid_8hpp.js │ │ ├── _centroid_8hpp_source.html │ │ ├── _clock_8hpp.html │ │ ├── _clock_8hpp.js │ │ ├── _clock_8hpp_source.html │ │ ├── _cluster_8hpp.html │ │ ├── _cluster_8hpp.js │ │ ├── _cluster_8hpp_source.html │ │ ├── _cluster_maker_8hpp.html │ │ ├── _cluster_maker_8hpp.js │ │ ├── _cluster_maker_8hpp_source.html │ │ ├── _compiler_flags_8md.html │ │ ├── _constants_8hpp.html │ │ ├── _constants_8hpp.js │ │ ├── _constants_8hpp_source.html │ │ ├── _coordinate_8hpp.html │ │ ├── _coordinate_8hpp_source.html │ │ ├── _coordinates_2_reference_frames_2_constants_8hpp.html │ │ ├── _coordinates_2_reference_frames_2_constants_8hpp.js │ │ ├── _coordinates_2_reference_frames_2_constants_8hpp_source.html │ │ ├── _coordinates_8hpp.html │ │ ├── _coordinates_8hpp_source.html │ │ ├── _core_2_constants_8hpp.html │ │ ├── _core_2_constants_8hpp.js │ │ ├── _core_2_constants_8hpp_source.html │ │ ├── _core_2_shape_8hpp.html │ │ ├── _core_2_shape_8hpp.js │ │ ├── _core_2_shape_8hpp_source.html │ │ ├── _core_2shape_8hpp.html │ │ ├── _core_2shape_8hpp.js │ │ ├── _core_2shape_8hpp_source.html │ │ ├── _core_8hpp.html │ │ ├── _core_8hpp_source.html │ │ ├── _d_c_m_8hpp.html │ │ ├── _d_c_m_8hpp.js │ │ ├── _d_c_m_8hpp_source.html │ │ ├── _data_cube_8hpp.html │ │ ├── _data_cube_8hpp.js │ │ ├── _data_cube_8hpp_source.html │ │ ├── _date_time_2_date_time_8hpp.html │ │ ├── _date_time_2_date_time_8hpp.js │ │ ├── _date_time_2_date_time_8hpp_source.html │ │ ├── _date_time_8hpp.html │ │ ├── _date_time_8hpp_source.html │ │ ├── _dec_8hpp.html │ │ ├── _dec_8hpp.js │ │ ├── _dec_8hpp_source.html │ │ ├── _dekker_8hpp.html │ │ ├── _dekker_8hpp.js │ │ ├── _dekker_8hpp_source.html │ │ ├── _dtype_info_8hpp.html │ │ ├── _dtype_info_8hpp.js │ │ ├── _dtype_info_8hpp_source.html │ │ ├── _e_c_e_f_8hpp.html │ │ ├── _e_c_e_f_8hpp.js │ │ ├── _e_c_e_f_8hpp_source.html │ │ ├── _e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.html │ │ ├── _e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.js │ │ ├── _e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp_source.html │ │ ├── _e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.html │ │ ├── _e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.js │ │ ├── _e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp_source.html │ │ ├── _e_c_e_fto_a_e_r_8hpp.html │ │ ├── _e_c_e_fto_a_e_r_8hpp.js │ │ ├── _e_c_e_fto_a_e_r_8hpp_source.html │ │ ├── _e_c_e_fto_e_n_u_8hpp.html │ │ ├── _e_c_e_fto_e_n_u_8hpp.js │ │ ├── _e_c_e_fto_e_n_u_8hpp_source.html │ │ ├── _e_c_e_fto_l_l_a_8hpp.html │ │ ├── _e_c_e_fto_l_l_a_8hpp.js │ │ ├── _e_c_e_fto_l_l_a_8hpp_source.html │ │ ├── _e_c_e_fto_n_e_d_8hpp.html │ │ ├── _e_c_e_fto_n_e_d_8hpp.js │ │ ├── _e_c_e_fto_n_e_d_8hpp_source.html │ │ ├── _e_n_u_8hpp.html │ │ ├── _e_n_u_8hpp.js │ │ ├── _e_n_u_8hpp_source.html │ │ ├── _e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html │ │ ├── _e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.js │ │ ├── _e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html │ │ ├── _e_n_u_unit_vecs_in_e_c_e_f_8hpp.html │ │ ├── _e_n_u_unit_vecs_in_e_c_e_f_8hpp.js │ │ ├── _e_n_u_unit_vecs_in_e_c_e_f_8hpp_source.html │ │ ├── _e_n_uto_a_e_r_8hpp.html │ │ ├── _e_n_uto_a_e_r_8hpp.js │ │ ├── _e_n_uto_a_e_r_8hpp_source.html │ │ ├── _e_n_uto_e_c_e_f_8hpp.html │ │ ├── _e_n_uto_e_c_e_f_8hpp.js │ │ ├── _e_n_uto_e_c_e_f_8hpp_source.html │ │ ├── _e_n_uto_l_l_a_8hpp.html │ │ ├── _e_n_uto_l_l_a_8hpp.js │ │ ├── _e_n_uto_l_l_a_8hpp_source.html │ │ ├── _e_n_uto_n_e_d_8hpp.html │ │ ├── _e_n_uto_n_e_d_8hpp.js │ │ ├── _e_n_uto_n_e_d_8hpp_source.html │ │ ├── _endian_8hpp.html │ │ ├── _endian_8hpp.js │ │ ├── _endian_8hpp_source.html │ │ ├── _enums_8hpp.html │ │ ├── _enums_8hpp.js │ │ ├── _enums_8hpp_source.html │ │ ├── _error_8hpp.html │ │ ├── _error_8hpp.js │ │ ├── _error_8hpp_source.html │ │ ├── _euler_8hpp.html │ │ ├── _euler_8hpp.js │ │ ├── _euler_8hpp_source.html │ │ ├── _filesystem_8hpp.html │ │ ├── _filesystem_8hpp_source.html │ │ ├── _filter_2_filters_2_filters2d_2laplace_8hpp.html │ │ ├── _filter_2_filters_2_filters2d_2laplace_8hpp.js │ │ ├── _filter_2_filters_2_filters2d_2laplace_8hpp_source.html │ │ ├── _filter_8hpp.html │ │ ├── _filter_8hpp_source.html │ │ ├── _functions_2_shape_8hpp.html │ │ ├── _functions_2_shape_8hpp.js │ │ ├── _functions_2_shape_8hpp_source.html │ │ ├── _functions_2cube_8hpp.html │ │ ├── _functions_2cube_8hpp.js │ │ ├── _functions_2cube_8hpp_source.html │ │ ├── _functions_2interp_8hpp.html │ │ ├── _functions_2interp_8hpp.js │ │ ├── _functions_2interp_8hpp_source.html │ │ ├── _functions_2power_8hpp.html │ │ ├── _functions_2power_8hpp.js │ │ ├── _functions_2power_8hpp_source.html │ │ ├── _functions_2powerf_8hpp.html │ │ ├── _functions_2powerf_8hpp.js │ │ ├── _functions_2powerf_8hpp_source.html │ │ ├── _functions_2shape_8hpp.html │ │ ├── _functions_2shape_8hpp.js │ │ ├── _functions_2shape_8hpp_source.html │ │ ├── _functions_8hpp.html │ │ ├── _functions_8hpp_source.html │ │ ├── _gauss_newton_nlls_8cpp-example.html │ │ ├── _geocentric_8hpp.html │ │ ├── _geocentric_8hpp.js │ │ ├── _geocentric_8hpp_source.html │ │ ├── _image_processing_8hpp.html │ │ ├── _image_processing_8hpp_source.html │ │ ├── _installation_8md.html │ │ ├── _integrate_8hpp.html │ │ ├── _integrate_8hpp_source.html │ │ ├── _interface_with_eigen_8cpp-example.html │ │ ├── _interface_with_open_c_v_8cpp-example.html │ │ ├── _iteration_8hpp.html │ │ ├── _iteration_8hpp.js │ │ ├── _iteration_8hpp_source.html │ │ ├── _l_l_a_8hpp.html │ │ ├── _l_l_a_8hpp.js │ │ ├── _l_l_a_8hpp_source.html │ │ ├── _l_l_ato_a_e_r_8hpp.html │ │ ├── _l_l_ato_a_e_r_8hpp.js │ │ ├── _l_l_ato_a_e_r_8hpp_source.html │ │ ├── _l_l_ato_e_c_e_f_8hpp.html │ │ ├── _l_l_ato_e_c_e_f_8hpp.js │ │ ├── _l_l_ato_e_c_e_f_8hpp_source.html │ │ ├── _l_l_ato_e_n_u_8hpp.html │ │ ├── _l_l_ato_e_n_u_8hpp.js │ │ ├── _l_l_ato_e_n_u_8hpp_source.html │ │ ├── _l_l_ato_geocentric_8hpp.html │ │ ├── _l_l_ato_geocentric_8hpp.js │ │ ├── _l_l_ato_geocentric_8hpp_source.html │ │ ├── _l_l_ato_n_e_d_8hpp.html │ │ ├── _l_l_ato_n_e_d_8hpp.js │ │ ├── _l_l_ato_n_e_d_8hpp_source.html │ │ ├── _linalg_8hpp.html │ │ ├── _linalg_8hpp_source.html │ │ ├── _logger_8hpp.html │ │ ├── _logger_8hpp.js │ │ ├── _logger_8hpp_source.html │ │ ├── _logging_8hpp.html │ │ ├── _logging_8hpp_source.html │ │ ├── _n_e_d_8hpp.html │ │ ├── _n_e_d_8hpp.js │ │ ├── _n_e_d_8hpp_source.html │ │ ├── _n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html │ │ ├── _n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.js │ │ ├── _n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html │ │ ├── _n_e_d_unit_vecs_in_e_c_e_f_8hpp.html │ │ ├── _n_e_d_unit_vecs_in_e_c_e_f_8hpp.js │ │ ├── _n_e_d_unit_vecs_in_e_c_e_f_8hpp_source.html │ │ ├── _n_e_dto_a_e_r_8hpp.html │ │ ├── _n_e_dto_a_e_r_8hpp.js │ │ ├── _n_e_dto_a_e_r_8hpp_source.html │ │ ├── _n_e_dto_e_c_e_f_8hpp.html │ │ ├── _n_e_dto_e_c_e_f_8hpp.js │ │ ├── _n_e_dto_e_c_e_f_8hpp_source.html │ │ ├── _n_e_dto_e_n_u_8hpp.html │ │ ├── _n_e_dto_e_n_u_8hpp.js │ │ ├── _n_e_dto_e_n_u_8hpp_source.html │ │ ├── _n_e_dto_l_l_a_8hpp.html │ │ ├── _n_e_dto_l_l_a_8hpp.js │ │ ├── _n_e_dto_l_l_a_8hpp_source.html │ │ ├── _nd_array_8hpp.html │ │ ├── _nd_array_8hpp_source.html │ │ ├── _nd_array_broadcast_8hpp.html │ │ ├── _nd_array_broadcast_8hpp.js │ │ ├── _nd_array_broadcast_8hpp_source.html │ │ ├── _nd_array_core_8hpp.html │ │ ├── _nd_array_core_8hpp.js │ │ ├── _nd_array_core_8hpp_source.html │ │ ├── _nd_array_iterators_8hpp.html │ │ ├── _nd_array_iterators_8hpp.js │ │ ├── _nd_array_iterators_8hpp_source.html │ │ ├── _nd_array_operators_8hpp.html │ │ ├── _nd_array_operators_8hpp.js │ │ ├── _nd_array_operators_8hpp_source.html │ │ ├── _newton_8hpp.html │ │ ├── _newton_8hpp.js │ │ ├── _newton_8hpp_source.html │ │ ├── _num_cpp_8hpp.html │ │ ├── _num_cpp_8hpp_source.html │ │ ├── _orientation_8hpp.html │ │ ├── _orientation_8hpp.js │ │ ├── _orientation_8hpp_source.html │ │ ├── _pixel_8hpp.html │ │ ├── _pixel_8hpp.js │ │ ├── _pixel_8hpp_source.html │ │ ├── _poly1d_8hpp.html │ │ ├── _poly1d_8hpp.js │ │ ├── _poly1d_8hpp_source.html │ │ ├── _polynomial_8hpp.html │ │ ├── _polynomial_8hpp_source.html │ │ ├── _pybind_interface_8hpp.html │ │ ├── _pybind_interface_8hpp_source.html │ │ ├── _python_interface_8hpp.html │ │ ├── _python_interface_8hpp_source.html │ │ ├── _quaternion_8hpp.html │ │ ├── _quaternion_8hpp.js │ │ ├── _quaternion_8hpp_source.html │ │ ├── _r_a_8hpp.html │ │ ├── _r_a_8hpp_source.html │ │ ├── _r_e_a_d_m_e_8md.html │ │ ├── _r_n_g_8hpp.html │ │ ├── _r_n_g_8hpp.js │ │ ├── _r_n_g_8hpp_source.html │ │ ├── _random_2bernoulli_8hpp.html │ │ ├── _random_2bernoulli_8hpp.js │ │ ├── _random_2bernoulli_8hpp_source.html │ │ ├── _random_2beta_8hpp.html │ │ ├── _random_2beta_8hpp.js │ │ ├── _random_2beta_8hpp_source.html │ │ ├── _random_2gamma_8hpp.html │ │ ├── _random_2gamma_8hpp.js │ │ ├── _random_2gamma_8hpp_source.html │ │ ├── _random_2laplace_8hpp.html │ │ ├── _random_2laplace_8hpp.js │ │ ├── _random_2laplace_8hpp_source.html │ │ ├── _random_8hpp.html │ │ ├── _random_8hpp_source.html │ │ ├── _read_me_8cpp-example.html │ │ ├── _reference_frames_8hpp.html │ │ ├── _reference_frames_8hpp_source.html │ │ ├── _release_notes_8md.html │ │ ├── _roots_8hpp.html │ │ ├── _roots_8hpp_source.html │ │ ├── _rotations_8hpp.html │ │ ├── _rotations_8hpp_source.html │ │ ├── _s_v_d_class_8hpp.html │ │ ├── _s_v_d_class_8hpp.js │ │ ├── _s_v_d_class_8hpp_source.html │ │ ├── _secant_8hpp.html │ │ ├── _secant_8hpp.js │ │ ├── _secant_8hpp_source.html │ │ ├── _slice_8hpp.html │ │ ├── _slice_8hpp.js │ │ ├── _slice_8hpp_source.html │ │ ├── _special_2bernoulli_8hpp.html │ │ ├── _special_2bernoulli_8hpp.js │ │ ├── _special_2bernoulli_8hpp_source.html │ │ ├── _special_2beta_8hpp.html │ │ ├── _special_2beta_8hpp.js │ │ ├── _special_2beta_8hpp_source.html │ │ ├── _special_2gamma_8hpp.html │ │ ├── _special_2gamma_8hpp.js │ │ ├── _special_2gamma_8hpp_source.html │ │ ├── _special_8hpp.html │ │ ├── _special_8hpp_source.html │ │ ├── _static_asserts_8hpp.html │ │ ├── _static_asserts_8hpp.js │ │ ├── _static_asserts_8hpp_source.html │ │ ├── _std_complex_operators_8hpp.html │ │ ├── _std_complex_operators_8hpp.js │ │ ├── _std_complex_operators_8hpp_source.html │ │ ├── _stl_algorithms_8hpp.html │ │ ├── _stl_algorithms_8hpp.js │ │ ├── _stl_algorithms_8hpp_source.html │ │ ├── _timer_8hpp.html │ │ ├── _timer_8hpp.js │ │ ├── _timer_8hpp_source.html │ │ ├── _transforms_8hpp.html │ │ ├── _transforms_8hpp_source.html │ │ ├── _type_traits_8hpp.html │ │ ├── _type_traits_8hpp.js │ │ ├── _type_traits_8hpp_source.html │ │ ├── _types_8hpp.html │ │ ├── _types_8hpp.js │ │ ├── _types_8hpp_source.html │ │ ├── _utils_2cube_8hpp.html │ │ ├── _utils_2cube_8hpp.js │ │ ├── _utils_2cube_8hpp_source.html │ │ ├── _utils_2interp_8hpp.html │ │ ├── _utils_2interp_8hpp.js │ │ ├── _utils_2interp_8hpp_source.html │ │ ├── _utils_2power_8hpp.html │ │ ├── _utils_2power_8hpp.js │ │ ├── _utils_2power_8hpp_source.html │ │ ├── _utils_2powerf_8hpp.html │ │ ├── _utils_2powerf_8hpp.js │ │ ├── _utils_2powerf_8hpp_source.html │ │ ├── _utils_8hpp.html │ │ ├── _utils_8hpp_source.html │ │ ├── _vec2_8hpp.html │ │ ├── _vec2_8hpp.js │ │ ├── _vec2_8hpp_source.html │ │ ├── _vec3_8hpp.html │ │ ├── _vec3_8hpp.js │ │ ├── _vec3_8hpp_source.html │ │ ├── _vector_8hpp.html │ │ ├── _vector_8hpp_source.html │ │ ├── _version_8hpp.html │ │ ├── _version_8hpp.js │ │ ├── _version_8hpp_source.html │ │ ├── abs_8hpp.html │ │ ├── abs_8hpp.js │ │ ├── abs_8hpp_source.html │ │ ├── add_8hpp.html │ │ ├── add_8hpp.js │ │ ├── add_8hpp_source.html │ │ ├── add_boundary1d_8hpp.html │ │ ├── add_boundary1d_8hpp.js │ │ ├── add_boundary1d_8hpp_source.html │ │ ├── add_boundary2d_8hpp.html │ │ ├── add_boundary2d_8hpp.js │ │ ├── add_boundary2d_8hpp_source.html │ │ ├── airy__ai_8hpp.html │ │ ├── airy__ai_8hpp.js │ │ ├── airy__ai_8hpp_source.html │ │ ├── airy__ai__prime_8hpp.html │ │ ├── airy__ai__prime_8hpp.js │ │ ├── airy__ai__prime_8hpp_source.html │ │ ├── airy__bi_8hpp.html │ │ ├── airy__bi_8hpp.js │ │ ├── airy__bi_8hpp_source.html │ │ ├── airy__bi__prime_8hpp.html │ │ ├── airy__bi__prime_8hpp.js │ │ ├── airy__bi__prime_8hpp_source.html │ │ ├── alen_8hpp.html │ │ ├── alen_8hpp.js │ │ ├── alen_8hpp_source.html │ │ ├── all_8hpp.html │ │ ├── all_8hpp.js │ │ ├── all_8hpp_source.html │ │ ├── allclose_8hpp.html │ │ ├── allclose_8hpp.js │ │ ├── allclose_8hpp_source.html │ │ ├── amax_8hpp.html │ │ ├── amax_8hpp.js │ │ ├── amax_8hpp_source.html │ │ ├── amin_8hpp.html │ │ ├── amin_8hpp.js │ │ ├── amin_8hpp_source.html │ │ ├── angle_8hpp.html │ │ ├── angle_8hpp.js │ │ ├── angle_8hpp_source.html │ │ ├── annotated.html │ │ ├── annotated_dup.js │ │ ├── any_8hpp.html │ │ ├── any_8hpp.js │ │ ├── any_8hpp_source.html │ │ ├── append_8hpp.html │ │ ├── append_8hpp.js │ │ ├── append_8hpp_source.html │ │ ├── apply_function_8hpp.html │ │ ├── apply_function_8hpp.js │ │ ├── apply_function_8hpp_source.html │ │ ├── apply_poly1d_8hpp.html │ │ ├── apply_poly1d_8hpp.js │ │ ├── apply_poly1d_8hpp_source.html │ │ ├── apply_threshold_8hpp.html │ │ ├── apply_threshold_8hpp.js │ │ ├── apply_threshold_8hpp_source.html │ │ ├── arange_8hpp.html │ │ ├── arange_8hpp.js │ │ ├── arange_8hpp_source.html │ │ ├── arccos_8hpp.html │ │ ├── arccos_8hpp.js │ │ ├── arccos_8hpp_source.html │ │ ├── arccosh_8hpp.html │ │ ├── arccosh_8hpp.js │ │ ├── arccosh_8hpp_source.html │ │ ├── arcsin_8hpp.html │ │ ├── arcsin_8hpp.js │ │ ├── arcsin_8hpp_source.html │ │ ├── arcsinh_8hpp.html │ │ ├── arcsinh_8hpp.js │ │ ├── arcsinh_8hpp_source.html │ │ ├── arctan2_8hpp.html │ │ ├── arctan2_8hpp.js │ │ ├── arctan2_8hpp_source.html │ │ ├── arctan_8hpp.html │ │ ├── arctan_8hpp.js │ │ ├── arctan_8hpp_source.html │ │ ├── arctanh_8hpp.html │ │ ├── arctanh_8hpp.js │ │ ├── arctanh_8hpp_source.html │ │ ├── argmax_8hpp.html │ │ ├── argmax_8hpp.js │ │ ├── argmax_8hpp_source.html │ │ ├── argmin_8hpp.html │ │ ├── argmin_8hpp.js │ │ ├── argmin_8hpp_source.html │ │ ├── argpartition_8hpp.html │ │ ├── argpartition_8hpp.js │ │ ├── argpartition_8hpp_source.html │ │ ├── argsort_8hpp.html │ │ ├── argsort_8hpp.js │ │ ├── argsort_8hpp_source.html │ │ ├── argwhere_8hpp.html │ │ ├── argwhere_8hpp.js │ │ ├── argwhere_8hpp_source.html │ │ ├── around_8hpp.html │ │ ├── around_8hpp.js │ │ ├── around_8hpp_source.html │ │ ├── array__equal_8hpp.html │ │ ├── array__equal_8hpp.js │ │ ├── array__equal_8hpp_source.html │ │ ├── array__equiv_8hpp.html │ │ ├── array__equiv_8hpp.js │ │ ├── array__equiv_8hpp_source.html │ │ ├── asarray_8hpp.html │ │ ├── asarray_8hpp.js │ │ ├── asarray_8hpp_source.html │ │ ├── astype_8hpp.html │ │ ├── astype_8hpp.js │ │ ├── astype_8hpp_source.html │ │ ├── average_8hpp.html │ │ ├── average_8hpp.js │ │ ├── average_8hpp_source.html │ │ ├── bartlett_8hpp.html │ │ ├── bartlett_8hpp.js │ │ ├── bartlett_8hpp_source.html │ │ ├── bc_s.png │ │ ├── bc_sd.png │ │ ├── bdwn.png │ │ ├── bernoilli_8hpp.html │ │ ├── bernoilli_8hpp.js │ │ ├── bernoilli_8hpp_source.html │ │ ├── bernoulli_8hpp.html │ │ ├── bernoulli_8hpp.js │ │ ├── bernoulli_8hpp_source.html │ │ ├── bessel__in_8hpp.html │ │ ├── bessel__in_8hpp.js │ │ ├── bessel__in_8hpp_source.html │ │ ├── bessel__in__prime_8hpp.html │ │ ├── bessel__in__prime_8hpp.js │ │ ├── bessel__in__prime_8hpp_source.html │ │ ├── bessel__jn_8hpp.html │ │ ├── bessel__jn_8hpp.js │ │ ├── bessel__jn_8hpp_source.html │ │ ├── bessel__jn__prime_8hpp.html │ │ ├── bessel__jn__prime_8hpp.js │ │ ├── bessel__jn__prime_8hpp_source.html │ │ ├── bessel__kn_8hpp.html │ │ ├── bessel__kn_8hpp.js │ │ ├── bessel__kn_8hpp_source.html │ │ ├── bessel__kn__prime_8hpp.html │ │ ├── bessel__kn__prime_8hpp.js │ │ ├── bessel__kn__prime_8hpp_source.html │ │ ├── bessel__yn_8hpp.html │ │ ├── bessel__yn_8hpp.js │ │ ├── bessel__yn_8hpp_source.html │ │ ├── bessel__yn__prime_8hpp.html │ │ ├── bessel__yn__prime_8hpp.js │ │ ├── bessel__yn__prime_8hpp_source.html │ │ ├── binary_repr_8hpp.html │ │ ├── binary_repr_8hpp.js │ │ ├── binary_repr_8hpp_source.html │ │ ├── bincount_8hpp.html │ │ ├── bincount_8hpp.js │ │ ├── bincount_8hpp_source.html │ │ ├── binomial_8hpp.html │ │ ├── binomial_8hpp.js │ │ ├── binomial_8hpp_source.html │ │ ├── bit__count_8hpp.html │ │ ├── bit__count_8hpp.js │ │ ├── bit__count_8hpp_source.html │ │ ├── bitwise__and_8hpp.html │ │ ├── bitwise__and_8hpp.js │ │ ├── bitwise__and_8hpp_source.html │ │ ├── bitwise__not_8hpp.html │ │ ├── bitwise__not_8hpp.js │ │ ├── bitwise__not_8hpp_source.html │ │ ├── bitwise__or_8hpp.html │ │ ├── bitwise__or_8hpp.js │ │ ├── bitwise__or_8hpp_source.html │ │ ├── bitwise__xor_8hpp.html │ │ ├── bitwise__xor_8hpp.js │ │ ├── bitwise__xor_8hpp_source.html │ │ ├── blackman_8hpp.html │ │ ├── blackman_8hpp.js │ │ ├── blackman_8hpp_source.html │ │ ├── byteswap_8hpp.html │ │ ├── byteswap_8hpp.js │ │ ├── byteswap_8hpp_source.html │ │ ├── cauchy_8hpp.html │ │ ├── cauchy_8hpp.js │ │ ├── cauchy_8hpp_source.html │ │ ├── cbrt_8hpp.html │ │ ├── cbrt_8hpp.js │ │ ├── cbrt_8hpp_source.html │ │ ├── ceil_8hpp.html │ │ ├── ceil_8hpp.js │ │ ├── ceil_8hpp_source.html │ │ ├── center_of_mass_8hpp.html │ │ ├── center_of_mass_8hpp.js │ │ ├── center_of_mass_8hpp_source.html │ │ ├── centroid_clusters_8hpp.html │ │ ├── centroid_clusters_8hpp.js │ │ ├── centroid_clusters_8hpp_source.html │ │ ├── chebyshev__t_8hpp.html │ │ ├── chebyshev__t_8hpp.js │ │ ├── chebyshev__t_8hpp_source.html │ │ ├── chebyshev__u_8hpp.html │ │ ├── chebyshev__u_8hpp.js │ │ ├── chebyshev__u_8hpp_source.html │ │ ├── chi_square_8hpp.html │ │ ├── chi_square_8hpp.js │ │ ├── chi_square_8hpp_source.html │ │ ├── choice_8hpp.html │ │ ├── choice_8hpp.js │ │ ├── choice_8hpp_source.html │ │ ├── cholesky_8hpp.html │ │ ├── cholesky_8hpp.js │ │ ├── cholesky_8hpp_source.html │ │ ├── classes.html │ │ ├── classnc_1_1_data_cube.html │ │ ├── classnc_1_1_data_cube.js │ │ ├── classnc_1_1_date_time.html │ │ ├── classnc_1_1_date_time.js │ │ ├── classnc_1_1_dtype_info.html │ │ ├── classnc_1_1_dtype_info.js │ │ ├── classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html │ │ ├── classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.js │ │ ├── classnc_1_1_nd_array.html │ │ ├── classnc_1_1_nd_array.js │ │ ├── classnc_1_1_nd_array_column_iterator.html │ │ ├── classnc_1_1_nd_array_column_iterator.js │ │ ├── classnc_1_1_nd_array_const_column_iterator.html │ │ ├── classnc_1_1_nd_array_const_column_iterator.js │ │ ├── classnc_1_1_nd_array_const_iterator.html │ │ ├── classnc_1_1_nd_array_const_iterator.js │ │ ├── classnc_1_1_nd_array_iterator.html │ │ ├── classnc_1_1_nd_array_iterator.js │ │ ├── classnc_1_1_shape.html │ │ ├── classnc_1_1_shape.js │ │ ├── classnc_1_1_slice.html │ │ ├── classnc_1_1_slice.js │ │ ├── classnc_1_1_timer.html │ │ ├── classnc_1_1_timer.js │ │ ├── classnc_1_1_vec2.html │ │ ├── classnc_1_1_vec2.js │ │ ├── classnc_1_1_vec3.html │ │ ├── classnc_1_1_vec3.js │ │ ├── classnc_1_1coordinates_1_1_cartesian.html │ │ ├── classnc_1_1coordinates_1_1_cartesian.js │ │ ├── classnc_1_1coordinates_1_1_coordinate.html │ │ ├── classnc_1_1coordinates_1_1_coordinate.js │ │ ├── classnc_1_1coordinates_1_1_dec.html │ │ ├── classnc_1_1coordinates_1_1_dec.js │ │ ├── classnc_1_1coordinates_1_1_euler.html │ │ ├── classnc_1_1coordinates_1_1_euler.js │ │ ├── classnc_1_1coordinates_1_1_orientation.html │ │ ├── classnc_1_1coordinates_1_1_orientation.js │ │ ├── classnc_1_1coordinates_1_1_r_a.html │ │ ├── classnc_1_1coordinates_1_1_r_a.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_celestial.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_dec.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_dec.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.js │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html │ │ ├── classnc_1_1coordinates_1_1reference__frames_1_1_r_a.js │ │ ├── classnc_1_1filesystem_1_1_file.html │ │ ├── classnc_1_1filesystem_1_1_file.js │ │ ├── classnc_1_1image_processing_1_1_centroid.html │ │ ├── classnc_1_1image_processing_1_1_centroid.js │ │ ├── classnc_1_1image_processing_1_1_cluster.html │ │ ├── classnc_1_1image_processing_1_1_cluster.js │ │ ├── classnc_1_1image_processing_1_1_cluster_maker.html │ │ ├── classnc_1_1image_processing_1_1_cluster_maker.js │ │ ├── classnc_1_1image_processing_1_1_pixel.html │ │ ├── classnc_1_1image_processing_1_1_pixel.js │ │ ├── classnc_1_1integrate_1_1_legendre_polynomial.html │ │ ├── classnc_1_1integrate_1_1_legendre_polynomial.js │ │ ├── classnc_1_1linalg_1_1_s_v_d.html │ │ ├── classnc_1_1linalg_1_1_s_v_d.js │ │ ├── classnc_1_1logger_1_1_binary_logger.html │ │ ├── classnc_1_1logger_1_1_binary_logger.js │ │ ├── classnc_1_1logger_1_1detail_1_1_binary_data_logger.html │ │ ├── classnc_1_1logger_1_1detail_1_1_binary_data_logger.js │ │ ├── classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html │ │ ├── classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.js │ │ ├── classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html │ │ ├── classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.js │ │ ├── classnc_1_1polynomial_1_1_poly1d.html │ │ ├── classnc_1_1polynomial_1_1_poly1d.js │ │ ├── classnc_1_1random_1_1_r_n_g.html │ │ ├── classnc_1_1random_1_1_r_n_g.js │ │ ├── classnc_1_1roots_1_1_bisection.html │ │ ├── classnc_1_1roots_1_1_bisection.js │ │ ├── classnc_1_1roots_1_1_brent.html │ │ ├── classnc_1_1roots_1_1_brent.js │ │ ├── classnc_1_1roots_1_1_dekker.html │ │ ├── classnc_1_1roots_1_1_dekker.js │ │ ├── classnc_1_1roots_1_1_iteration.html │ │ ├── classnc_1_1roots_1_1_iteration.js │ │ ├── classnc_1_1roots_1_1_newton.html │ │ ├── classnc_1_1roots_1_1_newton.js │ │ ├── classnc_1_1roots_1_1_secant.html │ │ ├── classnc_1_1roots_1_1_secant.js │ │ ├── classnc_1_1rotations_1_1_d_c_m.html │ │ ├── classnc_1_1rotations_1_1_d_c_m.js │ │ ├── classnc_1_1rotations_1_1_quaternion.html │ │ ├── classnc_1_1rotations_1_1_quaternion.js │ │ ├── clip_8hpp.html │ │ ├── clip_8hpp.js │ │ ├── clip_8hpp_source.html │ │ ├── closed.png │ │ ├── cluster_pixels_8hpp.html │ │ ├── cluster_pixels_8hpp.js │ │ ├── cluster_pixels_8hpp_source.html │ │ ├── cnr_8hpp.html │ │ ├── cnr_8hpp.js │ │ ├── cnr_8hpp_source.html │ │ ├── column__stack_8hpp.html │ │ ├── column__stack_8hpp.js │ │ ├── column__stack_8hpp_source.html │ │ ├── comp__ellint__1_8hpp.html │ │ ├── comp__ellint__1_8hpp.js │ │ ├── comp__ellint__1_8hpp_source.html │ │ ├── comp__ellint__2_8hpp.html │ │ ├── comp__ellint__2_8hpp.js │ │ ├── comp__ellint__2_8hpp_source.html │ │ ├── comp__ellint__3_8hpp.html │ │ ├── comp__ellint__3_8hpp.js │ │ ├── comp__ellint__3_8hpp_source.html │ │ ├── complementary_mean_filter1d_8hpp.html │ │ ├── complementary_mean_filter1d_8hpp.js │ │ ├── complementary_mean_filter1d_8hpp_source.html │ │ ├── complementary_mean_filter_8hpp.html │ │ ├── complementary_mean_filter_8hpp.js │ │ ├── complementary_mean_filter_8hpp_source.html │ │ ├── complementary_median_filter1d_8hpp.html │ │ ├── complementary_median_filter1d_8hpp.js │ │ ├── complementary_median_filter1d_8hpp_source.html │ │ ├── complementary_median_filter_8hpp.html │ │ ├── complementary_median_filter_8hpp.js │ │ ├── complementary_median_filter_8hpp_source.html │ │ ├── complex_8hpp.html │ │ ├── complex_8hpp.js │ │ ├── complex_8hpp_source.html │ │ ├── concatenate_8hpp.html │ │ ├── concatenate_8hpp.js │ │ ├── concatenate_8hpp_source.html │ │ ├── conj_8hpp.html │ │ ├── conj_8hpp.js │ │ ├── conj_8hpp_source.html │ │ ├── constant1d_8hpp.html │ │ ├── constant1d_8hpp.js │ │ ├── constant1d_8hpp_source.html │ │ ├── constant2d_8hpp.html │ │ ├── constant2d_8hpp.js │ │ ├── constant2d_8hpp_source.html │ │ ├── contains_8hpp.html │ │ ├── contains_8hpp.js │ │ ├── contains_8hpp_source.html │ │ ├── convolve1d_8hpp.html │ │ ├── convolve1d_8hpp.js │ │ ├── convolve1d_8hpp_source.html │ │ ├── convolve_8hpp.html │ │ ├── convolve_8hpp.js │ │ ├── convolve_8hpp_source.html │ │ ├── copy_8hpp.html │ │ ├── copy_8hpp.js │ │ ├── copy_8hpp_source.html │ │ ├── copy_sign_8hpp.html │ │ ├── copy_sign_8hpp.js │ │ ├── copy_sign_8hpp_source.html │ │ ├── copyto_8hpp.html │ │ ├── copyto_8hpp.js │ │ ├── copyto_8hpp_source.html │ │ ├── corrcoef_8hpp.html │ │ ├── corrcoef_8hpp.js │ │ ├── corrcoef_8hpp_source.html │ │ ├── cos_8hpp.html │ │ ├── cos_8hpp.js │ │ ├── cos_8hpp_source.html │ │ ├── cosh_8hpp.html │ │ ├── cosh_8hpp.js │ │ ├── cosh_8hpp_source.html │ │ ├── count__nonzero_8hpp.html │ │ ├── count__nonzero_8hpp.js │ │ ├── count__nonzero_8hpp_source.html │ │ ├── cov_8hpp.html │ │ ├── cov_8hpp.js │ │ ├── cov_8hpp_source.html │ │ ├── cov__inv_8hpp.html │ │ ├── cov__inv_8hpp.js │ │ ├── cov__inv_8hpp_source.html │ │ ├── cross_8hpp.html │ │ ├── cross_8hpp.js │ │ ├── cross_8hpp_source.html │ │ ├── cumprod_8hpp.html │ │ ├── cumprod_8hpp.js │ │ ├── cumprod_8hpp_source.html │ │ ├── cumsum_8hpp.html │ │ ├── cumsum_8hpp.js │ │ ├── cumsum_8hpp_source.html │ │ ├── cyclic__hankel__1_8hpp.html │ │ ├── cyclic__hankel__1_8hpp.js │ │ ├── cyclic__hankel__1_8hpp_source.html │ │ ├── cyclic__hankel__2_8hpp.html │ │ ├── cyclic__hankel__2_8hpp.js │ │ ├── cyclic__hankel__2_8hpp_source.html │ │ ├── deg2rad_8hpp.html │ │ ├── deg2rad_8hpp.js │ │ ├── deg2rad_8hpp_source.html │ │ ├── degree_seperation_8hpp.html │ │ ├── degree_seperation_8hpp.js │ │ ├── degree_seperation_8hpp_source.html │ │ ├── degrees_8hpp.html │ │ ├── degrees_8hpp.js │ │ ├── degrees_8hpp_source.html │ │ ├── delete_indices_8hpp.html │ │ ├── delete_indices_8hpp.js │ │ ├── delete_indices_8hpp_source.html │ │ ├── det_8hpp.html │ │ ├── det_8hpp.js │ │ ├── det_8hpp_source.html │ │ ├── diag_8hpp.html │ │ ├── diag_8hpp.js │ │ ├── diag_8hpp_source.html │ │ ├── diagflat_8hpp.html │ │ ├── diagflat_8hpp.js │ │ ├── diagflat_8hpp_source.html │ │ ├── diagonal_8hpp.html │ │ ├── diagonal_8hpp.js │ │ ├── diagonal_8hpp_source.html │ │ ├── diff_8hpp.html │ │ ├── diff_8hpp.js │ │ ├── diff_8hpp_source.html │ │ ├── digamma_8hpp.html │ │ ├── digamma_8hpp.js │ │ ├── digamma_8hpp_source.html │ │ ├── digitize_8hpp.html │ │ ├── digitize_8hpp.js │ │ ├── digitize_8hpp_source.html │ │ ├── dir_093b14450e434accd2cde91cedff0d18.html │ │ ├── dir_093b14450e434accd2cde91cedff0d18.js │ │ ├── dir_0d1ba73aea39371457827a684d239ae8.html │ │ ├── dir_0d1ba73aea39371457827a684d239ae8.js │ │ ├── dir_10b69f38d52e59bd23d9fc1937bea22a.html │ │ ├── dir_10b69f38d52e59bd23d9fc1937bea22a.js │ │ ├── dir_135bbb5e4eb4ddbda27ac0540001f7fd.html │ │ ├── dir_135bbb5e4eb4ddbda27ac0540001f7fd.js │ │ ├── dir_22368e90b3593b912515c50bf54c969c.html │ │ ├── dir_22368e90b3593b912515c50bf54c969c.js │ │ ├── dir_2e8552338a5fe196f81c9ab4a461b773.html │ │ ├── dir_2e8552338a5fe196f81c9ab4a461b773.js │ │ ├── dir_34171bd951b13a53aa9f237277a18e40.html │ │ ├── dir_34171bd951b13a53aa9f237277a18e40.js │ │ ├── dir_3762e5d1d8eae0347117ff18be7f517d.html │ │ ├── dir_3762e5d1d8eae0347117ff18be7f517d.js │ │ ├── dir_49e56c817e5e54854c35e136979f97ca.html │ │ ├── dir_49e56c817e5e54854c35e136979f97ca.js │ │ ├── dir_5cccc998a857696e320833db04811b65.html │ │ ├── dir_5cccc998a857696e320833db04811b65.js │ │ ├── dir_5de075070a423c280ad6ed943802bf75.html │ │ ├── dir_5de075070a423c280ad6ed943802bf75.js │ │ ├── dir_6282b7c0ec828c4b60830a3c405ff9e8.html │ │ ├── dir_6282b7c0ec828c4b60830a3c405ff9e8.js │ │ ├── dir_812c63cdb45b3d369433603c764d8ca4.html │ │ ├── dir_812c63cdb45b3d369433603c764d8ca4.js │ │ ├── dir_821f0d92e31f34ac47de77ab611d6024.html │ │ ├── dir_821f0d92e31f34ac47de77ab611d6024.js │ │ ├── dir_8e10c5302eb28a2724f15da9a6fa6b15.html │ │ ├── dir_8e10c5302eb28a2724f15da9a6fa6b15.js │ │ ├── dir_9051d82ec7b39b1c992f5bf2868571ca.html │ │ ├── dir_9051d82ec7b39b1c992f5bf2868571ca.js │ │ ├── dir_953ac13dcbfb3e70ef6edb1a0956b929.html │ │ ├── dir_a0b3eef1c4a290b815c33ad6e7027cf3.html │ │ ├── dir_a0b3eef1c4a290b815c33ad6e7027cf3.js │ │ ├── dir_ad9a75b0e29f8223a99c87bd9504b7c3.html │ │ ├── dir_ad9a75b0e29f8223a99c87bd9504b7c3.js │ │ ├── dir_b095eef7754acf39fdbf777c56c024ce.html │ │ ├── dir_b095eef7754acf39fdbf777c56c024ce.js │ │ ├── dir_b6a8313716ea291fbd26120862b344bc.html │ │ ├── dir_b6a8313716ea291fbd26120862b344bc.js │ │ ├── dir_cac3062759fc9841f0966ab05282555a.html │ │ ├── dir_cac3062759fc9841f0966ab05282555a.js │ │ ├── dir_ccac4f9986402d0375bdb0274c573e10.html │ │ ├── dir_ccac4f9986402d0375bdb0274c573e10.js │ │ ├── dir_d4391026049f7aede16e9c18d53d30b9.html │ │ ├── dir_d4391026049f7aede16e9c18d53d30b9.js │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.js │ │ ├── dir_d784f51d362276329e5940df711baf3d.html │ │ ├── dir_d784f51d362276329e5940df711baf3d.js │ │ ├── dir_e70e3c350b58629b2f80cdf8725e71de.html │ │ ├── dir_e70e3c350b58629b2f80cdf8725e71de.js │ │ ├── dir_f27b6096a19b08ebde950a57474879cd.html │ │ ├── dir_f27b6096a19b08ebde950a57474879cd.js │ │ ├── dir_f7abd548f101bada8968797392787ec9.html │ │ ├── dir_f7abd548f101bada8968797392787ec9.js │ │ ├── dir_f80dee9f889b1b78f4bee16631eb7d22.html │ │ ├── dir_f80dee9f889b1b78f4bee16631eb7d22.js │ │ ├── dir_fd15cf3044ef18c575a802718b3c6ac6.html │ │ ├── dir_fd15cf3044ef18c575a802718b3c6ac6.js │ │ ├── dir_fda794c261a16a342ab8761046b335b7.html │ │ ├── dir_fda794c261a16a342ab8761046b335b7.js │ │ ├── discrete_8hpp.html │ │ ├── discrete_8hpp.js │ │ ├── discrete_8hpp_source.html │ │ ├── divide_8hpp.html │ │ ├── divide_8hpp.js │ │ ├── divide_8hpp_source.html │ │ ├── doc.png │ │ ├── doc.svg │ │ ├── docd.svg │ │ ├── dot_8hpp.html │ │ ├── dot_8hpp.js │ │ ├── dot_8hpp_source.html │ │ ├── doxygen-awesome-darkmode-toggle.js │ │ ├── doxygen-awesome-fragment-copy-button.js │ │ ├── doxygen-awesome-paragraph-link.js │ │ ├── doxygen-awesome-sidebar-only-darkmode-toggle.css │ │ ├── doxygen-awesome.css │ │ ├── doxygen.css │ │ ├── doxygen.svg │ │ ├── dump_8hpp.html │ │ ├── dump_8hpp.js │ │ ├── dump_8hpp_source.html │ │ ├── dynsections.js │ │ ├── ellint__1_8hpp.html │ │ ├── ellint__1_8hpp.js │ │ ├── ellint__1_8hpp_source.html │ │ ├── ellint__2_8hpp.html │ │ ├── ellint__2_8hpp.js │ │ ├── ellint__2_8hpp_source.html │ │ ├── ellint__3_8hpp.html │ │ ├── ellint__3_8hpp.js │ │ ├── ellint__3_8hpp_source.html │ │ ├── empty_8hpp.html │ │ ├── empty_8hpp.js │ │ ├── empty_8hpp_source.html │ │ ├── empty__like_8hpp.html │ │ ├── empty__like_8hpp.js │ │ ├── empty__like_8hpp_source.html │ │ ├── endianess_8hpp.html │ │ ├── endianess_8hpp.js │ │ ├── endianess_8hpp_source.html │ │ ├── equal_8hpp.html │ │ ├── equal_8hpp.js │ │ ├── equal_8hpp_source.html │ │ ├── erf_8hpp.html │ │ ├── erf_8hpp.js │ │ ├── erf_8hpp_source.html │ │ ├── erf__inv_8hpp.html │ │ ├── erf__inv_8hpp.js │ │ ├── erf__inv_8hpp_source.html │ │ ├── erfc_8hpp.html │ │ ├── erfc_8hpp.js │ │ ├── erfc_8hpp_source.html │ │ ├── erfc__inv_8hpp.html │ │ ├── erfc__inv_8hpp.js │ │ ├── erfc__inv_8hpp_source.html │ │ ├── essentially_equal_8hpp.html │ │ ├── essentially_equal_8hpp.js │ │ ├── essentially_equal_8hpp_source.html │ │ ├── essentially_equal_complex_8hpp.html │ │ ├── essentially_equal_complex_8hpp.js │ │ ├── essentially_equal_complex_8hpp_source.html │ │ ├── examples.html │ │ ├── examples.js │ │ ├── exp2_8hpp.html │ │ ├── exp2_8hpp.js │ │ ├── exp2_8hpp_source.html │ │ ├── exp_8hpp.html │ │ ├── exp_8hpp.js │ │ ├── exp_8hpp_source.html │ │ ├── expint_8hpp.html │ │ ├── expint_8hpp.js │ │ ├── expint_8hpp_source.html │ │ ├── expm1_8hpp.html │ │ ├── expm1_8hpp.js │ │ ├── expm1_8hpp_source.html │ │ ├── exponential_8hpp.html │ │ ├── exponential_8hpp.js │ │ ├── exponential_8hpp_source.html │ │ ├── extract_8hpp.html │ │ ├── extract_8hpp.js │ │ ├── extract_8hpp_source.html │ │ ├── extreme_value_8hpp.html │ │ ├── extreme_value_8hpp.js │ │ ├── extreme_value_8hpp_source.html │ │ ├── eye_8hpp.html │ │ ├── eye_8hpp.js │ │ ├── eye_8hpp_source.html │ │ ├── f_8hpp.html │ │ ├── f_8hpp.js │ │ ├── f_8hpp_source.html │ │ ├── factorial_8hpp.html │ │ ├── factorial_8hpp.js │ │ ├── factorial_8hpp_source.html │ │ ├── files.html │ │ ├── files_dup.js │ │ ├── fill_corners_8hpp.html │ │ ├── fill_corners_8hpp.js │ │ ├── fill_corners_8hpp_source.html │ │ ├── fill_diagnol_8hpp.html │ │ ├── fill_diagnol_8hpp.js │ │ ├── fill_diagnol_8hpp_source.html │ │ ├── find_8hpp.html │ │ ├── find_8hpp.js │ │ ├── find_8hpp_source.html │ │ ├── fix_8hpp.html │ │ ├── fix_8hpp.js │ │ ├── fix_8hpp_source.html │ │ ├── flatnonzero_8hpp.html │ │ ├── flatnonzero_8hpp.js │ │ ├── flatnonzero_8hpp_source.html │ │ ├── flatten_8hpp.html │ │ ├── flatten_8hpp.js │ │ ├── flatten_8hpp_source.html │ │ ├── flip_8hpp.html │ │ ├── flip_8hpp.js │ │ ├── flip_8hpp_source.html │ │ ├── fliplr_8hpp.html │ │ ├── fliplr_8hpp.js │ │ ├── fliplr_8hpp_source.html │ │ ├── flipud_8hpp.html │ │ ├── flipud_8hpp.js │ │ ├── flipud_8hpp_source.html │ │ ├── floor_8hpp.html │ │ ├── floor_8hpp.js │ │ ├── floor_8hpp_source.html │ │ ├── floor__divide_8hpp.html │ │ ├── floor__divide_8hpp.js │ │ ├── floor__divide_8hpp_source.html │ │ ├── fmax_8hpp.html │ │ ├── fmax_8hpp.js │ │ ├── fmax_8hpp_source.html │ │ ├── fmin_8hpp.html │ │ ├── fmin_8hpp.js │ │ ├── fmin_8hpp_source.html │ │ ├── fmod_8hpp.html │ │ ├── fmod_8hpp.js │ │ ├── fmod_8hpp_source.html │ │ ├── folderclosed.png │ │ ├── folderclosed.svg │ │ ├── folderclosedd.svg │ │ ├── folderopen.png │ │ ├── folderopen.svg │ │ ├── folderopend.svg │ │ ├── frombuffer_8hpp.html │ │ ├── frombuffer_8hpp.js │ │ ├── frombuffer_8hpp_source.html │ │ ├── fromfile_8hpp.html │ │ ├── fromfile_8hpp.js │ │ ├── fromfile_8hpp_source.html │ │ ├── fromfunction_8hpp.html │ │ ├── fromfunction_8hpp.js │ │ ├── fromfunction_8hpp_source.html │ │ ├── fromiter_8hpp.html │ │ ├── fromiter_8hpp.js │ │ ├── fromiter_8hpp_source.html │ │ ├── fromstring_8hpp.html │ │ ├── fromstring_8hpp.js │ │ ├── fromstring_8hpp_source.html │ │ ├── full_8hpp.html │ │ ├── full_8hpp.js │ │ ├── full_8hpp_source.html │ │ ├── full__like_8hpp.html │ │ ├── full__like_8hpp.js │ │ ├── full__like_8hpp_source.html │ │ ├── functions.html │ │ ├── functions_a.html │ │ ├── functions_b.html │ │ ├── functions_c.html │ │ ├── functions_d.html │ │ ├── functions_dup.js │ │ ├── functions_e.html │ │ ├── functions_enum.html │ │ ├── functions_f.html │ │ ├── functions_func.html │ │ ├── functions_func.js │ │ ├── functions_func_b.html │ │ ├── functions_func_c.html │ │ ├── functions_func_d.html │ │ ├── functions_func_e.html │ │ ├── functions_func_f.html │ │ ├── functions_func_g.html │ │ ├── functions_func_h.html │ │ ├── functions_func_i.html │ │ ├── functions_func_j.html │ │ ├── functions_func_k.html │ │ ├── functions_func_l.html │ │ ├── functions_func_m.html │ │ ├── functions_func_n.html │ │ ├── functions_func_o.html │ │ ├── functions_func_p.html │ │ ├── functions_func_q.html │ │ ├── functions_func_r.html │ │ ├── functions_func_s.html │ │ ├── functions_func_t.html │ │ ├── functions_func_u.html │ │ ├── functions_func_v.html │ │ ├── functions_func_w.html │ │ ├── functions_func_x.html │ │ ├── functions_func_y.html │ │ ├── functions_func_z.html │ │ ├── functions_func_~.html │ │ ├── functions_g.html │ │ ├── functions_h.html │ │ ├── functions_i.html │ │ ├── functions_j.html │ │ ├── functions_k.html │ │ ├── functions_l.html │ │ ├── functions_m.html │ │ ├── functions_n.html │ │ ├── functions_o.html │ │ ├── functions_p.html │ │ ├── functions_q.html │ │ ├── functions_r.html │ │ ├── functions_rela.html │ │ ├── functions_s.html │ │ ├── functions_t.html │ │ ├── functions_type.html │ │ ├── functions_u.html │ │ ├── functions_v.html │ │ ├── functions_vars.html │ │ ├── functions_w.html │ │ ├── functions_x.html │ │ ├── functions_y.html │ │ ├── functions_z.html │ │ ├── functions_~.html │ │ ├── gamma1pm1_8hpp.html │ │ ├── gamma1pm1_8hpp.js │ │ ├── gamma1pm1_8hpp_source.html │ │ ├── gauss__legendre_8hpp.html │ │ ├── gauss__legendre_8hpp.js │ │ ├── gauss__legendre_8hpp_source.html │ │ ├── gauss_newton_nlls_8hpp.html │ │ ├── gauss_newton_nlls_8hpp.js │ │ ├── gauss_newton_nlls_8hpp_source.html │ │ ├── gaussian1d_8hpp.html │ │ ├── gaussian1d_8hpp.js │ │ ├── gaussian1d_8hpp_source.html │ │ ├── gaussian_8hpp.html │ │ ├── gaussian_8hpp.js │ │ ├── gaussian_8hpp_source.html │ │ ├── gaussian_filter1d_8hpp.html │ │ ├── gaussian_filter1d_8hpp.js │ │ ├── gaussian_filter1d_8hpp_source.html │ │ ├── gaussian_filter_8hpp.html │ │ ├── gaussian_filter_8hpp.js │ │ ├── gaussian_filter_8hpp_source.html │ │ ├── gcd_8hpp.html │ │ ├── gcd_8hpp.js │ │ ├── gcd_8hpp_source.html │ │ ├── generate_centroids_8hpp.html │ │ ├── generate_centroids_8hpp.js │ │ ├── generate_centroids_8hpp_source.html │ │ ├── generate_threshold_8hpp.html │ │ ├── generate_threshold_8hpp.js │ │ ├── generate_threshold_8hpp_source.html │ │ ├── generator_8hpp.html │ │ ├── generator_8hpp.js │ │ ├── generator_8hpp_source.html │ │ ├── geocentric_radius_8hpp.html │ │ ├── geocentric_radius_8hpp.js │ │ ├── geocentric_radius_8hpp_source.html │ │ ├── geocentric_to_l_l_a_8hpp.html │ │ ├── geocentric_to_l_l_a_8hpp.js │ │ ├── geocentric_to_l_l_a_8hpp_source.html │ │ ├── geometric_8hpp.html │ │ ├── geometric_8hpp.js │ │ ├── geometric_8hpp_source.html │ │ ├── geomspace_8hpp.html │ │ ├── geomspace_8hpp.js │ │ ├── geomspace_8hpp_source.html │ │ ├── globals.html │ │ ├── globals_defs.html │ │ ├── gradient_8hpp.html │ │ ├── gradient_8hpp.js │ │ ├── gradient_8hpp_source.html │ │ ├── greater_8hpp.html │ │ ├── greater_8hpp.js │ │ ├── greater_8hpp_source.html │ │ ├── greater__equal_8hpp.html │ │ ├── greater__equal_8hpp.js │ │ ├── greater__equal_8hpp_source.html │ │ ├── hamming_8hpp.html │ │ ├── hamming_8hpp.js │ │ ├── hamming_8hpp_source.html │ │ ├── hamming_encode_8hpp.html │ │ ├── hamming_encode_8hpp.js │ │ ├── hamming_encode_8hpp_source.html │ │ ├── hanning_8hpp.html │ │ ├── hanning_8hpp.js │ │ ├── hanning_8hpp_source.html │ │ ├── hat_8hpp.html │ │ ├── hat_8hpp.js │ │ ├── hat_8hpp_source.html │ │ ├── hermite_8hpp.html │ │ ├── hermite_8hpp.js │ │ ├── hermite_8hpp_source.html │ │ ├── hierarchy.html │ │ ├── hierarchy.js │ │ ├── histogram_8hpp.html │ │ ├── histogram_8hpp.js │ │ ├── histogram_8hpp_source.html │ │ ├── hsplit_8hpp.html │ │ ├── hsplit_8hpp.js │ │ ├── hsplit_8hpp_source.html │ │ ├── hstack_8hpp.html │ │ ├── hstack_8hpp.js │ │ ├── hstack_8hpp_source.html │ │ ├── hypot_8hpp.html │ │ ├── hypot_8hpp.js │ │ ├── hypot_8hpp_source.html │ │ ├── identity_8hpp.html │ │ ├── identity_8hpp.js │ │ ├── identity_8hpp_source.html │ │ ├── imag_8hpp.html │ │ ├── imag_8hpp.js │ │ ├── imag_8hpp_source.html │ │ ├── index.html │ │ ├── inner_8hpp.html │ │ ├── inner_8hpp.js │ │ ├── inner_8hpp_source.html │ │ ├── insert_8hpp.html │ │ ├── insert_8hpp.js │ │ ├── insert_8hpp_source.html │ │ ├── intersect1d_8hpp.html │ │ ├── intersect1d_8hpp.js │ │ ├── intersect1d_8hpp_source.html │ │ ├── inv_8hpp.html │ │ ├── inv_8hpp.js │ │ ├── inv_8hpp_source.html │ │ ├── invert_8hpp.html │ │ ├── invert_8hpp.js │ │ ├── invert_8hpp_source.html │ │ ├── isclose_8hpp.html │ │ ├── isclose_8hpp.js │ │ ├── isclose_8hpp_source.html │ │ ├── isinf_8hpp.html │ │ ├── isinf_8hpp.js │ │ ├── isinf_8hpp_source.html │ │ ├── isnan_8hpp.html │ │ ├── isnan_8hpp.js │ │ ├── isnan_8hpp_source.html │ │ ├── isneginf_8hpp.html │ │ ├── isneginf_8hpp.js │ │ ├── isneginf_8hpp_source.html │ │ ├── isposinf_8hpp.html │ │ ├── isposinf_8hpp.js │ │ ├── isposinf_8hpp_source.html │ │ ├── jquery.js │ │ ├── kaiser_8hpp.html │ │ ├── kaiser_8hpp.js │ │ ├── kaiser_8hpp_source.html │ │ ├── laguerre_8hpp.html │ │ ├── laguerre_8hpp.js │ │ ├── laguerre_8hpp_source.html │ │ ├── lcm_8hpp.html │ │ ├── lcm_8hpp.js │ │ ├── lcm_8hpp_source.html │ │ ├── ldexp_8hpp.html │ │ ├── ldexp_8hpp.js │ │ ├── ldexp_8hpp_source.html │ │ ├── left__shift_8hpp.html │ │ ├── left__shift_8hpp.js │ │ ├── left__shift_8hpp_source.html │ │ ├── legendre__p_8hpp.html │ │ ├── legendre__p_8hpp.js │ │ ├── legendre__p_8hpp_source.html │ │ ├── legendre__q_8hpp.html │ │ ├── legendre__q_8hpp.js │ │ ├── legendre__q_8hpp_source.html │ │ ├── less_8hpp.html │ │ ├── less_8hpp.js │ │ ├── less_8hpp_source.html │ │ ├── less__equal_8hpp.html │ │ ├── less__equal_8hpp.js │ │ ├── less__equal_8hpp_source.html │ │ ├── linspace_8hpp.html │ │ ├── linspace_8hpp.js │ │ ├── linspace_8hpp_source.html │ │ ├── load_8hpp.html │ │ ├── load_8hpp.js │ │ ├── load_8hpp_source.html │ │ ├── log10_8hpp.html │ │ ├── log10_8hpp.js │ │ ├── log10_8hpp_source.html │ │ ├── log1p_8hpp.html │ │ ├── log1p_8hpp.js │ │ ├── log1p_8hpp_source.html │ │ ├── log2_8hpp.html │ │ ├── log2_8hpp.js │ │ ├── log2_8hpp_source.html │ │ ├── log_8hpp.html │ │ ├── log_8hpp.js │ │ ├── log_8hpp_source.html │ │ ├── log__gamma_8hpp.html │ │ ├── log__gamma_8hpp.js │ │ ├── log__gamma_8hpp_source.html │ │ ├── logaddexp2_8hpp.html │ │ ├── logaddexp2_8hpp.js │ │ ├── logaddexp2_8hpp_source.html │ │ ├── logaddexp_8hpp.html │ │ ├── logaddexp_8hpp.js │ │ ├── logaddexp_8hpp_source.html │ │ ├── logb_8hpp.html │ │ ├── logb_8hpp.js │ │ ├── logb_8hpp_source.html │ │ ├── logical__and_8hpp.html │ │ ├── logical__and_8hpp.js │ │ ├── logical__and_8hpp_source.html │ │ ├── logical__not_8hpp.html │ │ ├── logical__not_8hpp.js │ │ ├── logical__not_8hpp_source.html │ │ ├── logical__or_8hpp.html │ │ ├── logical__or_8hpp.js │ │ ├── logical__or_8hpp_source.html │ │ ├── logical__xor_8hpp.html │ │ ├── logical__xor_8hpp.js │ │ ├── logical__xor_8hpp_source.html │ │ ├── lognormal_8hpp.html │ │ ├── lognormal_8hpp.js │ │ ├── lognormal_8hpp_source.html │ │ ├── logspace_8hpp.html │ │ ├── logspace_8hpp.js │ │ ├── logspace_8hpp_source.html │ │ ├── lstsq_8hpp.html │ │ ├── lstsq_8hpp.js │ │ ├── lstsq_8hpp_source.html │ │ ├── lu__decomposition_8hpp.html │ │ ├── lu__decomposition_8hpp.js │ │ ├── lu__decomposition_8hpp_source.html │ │ ├── matmul_8hpp.html │ │ ├── matmul_8hpp.js │ │ ├── matmul_8hpp_source.html │ │ ├── matrix__power_8hpp.html │ │ ├── matrix__power_8hpp.js │ │ ├── matrix__power_8hpp_source.html │ │ ├── max_8hpp.html │ │ ├── max_8hpp.js │ │ ├── max_8hpp_source.html │ │ ├── maximum_8hpp.html │ │ ├── maximum_8hpp.js │ │ ├── maximum_8hpp_source.html │ │ ├── maximum_filter1d_8hpp.html │ │ ├── maximum_filter1d_8hpp.js │ │ ├── maximum_filter1d_8hpp_source.html │ │ ├── maximum_filter_8hpp.html │ │ ├── maximum_filter_8hpp.js │ │ ├── maximum_filter_8hpp_source.html │ │ ├── md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_building.html │ │ ├── md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_compiler_flags.html │ │ ├── md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_installation.html │ │ ├── md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_release_notes.html │ │ ├── md__c___github__num_cpp_docs_markdown__building.html │ │ ├── md__c___github__num_cpp_docs_markdown__compiler_flags.html │ │ ├── md__c___github__num_cpp_docs_markdown__installation.html │ │ ├── md__c___github__num_cpp_docs_markdown__release_notes.html │ │ ├── md__home_dpilger__github__num_cpp_docs_markdown__building.html │ │ ├── md__home_dpilger__github__num_cpp_docs_markdown__compiler_flags.html │ │ ├── md__home_dpilger__github__num_cpp_docs_markdown__installation.html │ │ ├── md__home_dpilger__github__num_cpp_docs_markdown__release_notes.html │ │ ├── md__mnt_c__github__num_cpp_docs_markdown__building.html │ │ ├── md__mnt_c__github__num_cpp_docs_markdown__compiler_flags.html │ │ ├── md__mnt_c__github__num_cpp_docs_markdown__installation.html │ │ ├── md__mnt_c__github__num_cpp_docs_markdown__release_notes.html │ │ ├── mean_8hpp.html │ │ ├── mean_8hpp.js │ │ ├── mean_8hpp_source.html │ │ ├── mean_filter1d_8hpp.html │ │ ├── mean_filter1d_8hpp.js │ │ ├── mean_filter1d_8hpp_source.html │ │ ├── mean_filter_8hpp.html │ │ ├── mean_filter_8hpp.js │ │ ├── mean_filter_8hpp_source.html │ │ ├── median_8hpp.html │ │ ├── median_8hpp.js │ │ ├── median_8hpp_source.html │ │ ├── median_filter1d_8hpp.html │ │ ├── median_filter1d_8hpp.js │ │ ├── median_filter1d_8hpp_source.html │ │ ├── median_filter_8hpp.html │ │ ├── median_filter_8hpp.js │ │ ├── median_filter_8hpp_source.html │ │ ├── menu.js │ │ ├── menudata.js │ │ ├── meshgrid_8hpp.html │ │ ├── meshgrid_8hpp.js │ │ ├── meshgrid_8hpp_source.html │ │ ├── min_8hpp.html │ │ ├── min_8hpp.js │ │ ├── min_8hpp_source.html │ │ ├── minimum_8hpp.html │ │ ├── minimum_8hpp.js │ │ ├── minimum_8hpp_source.html │ │ ├── minimum_filter1d_8hpp.html │ │ ├── minimum_filter1d_8hpp.js │ │ ├── minimum_filter1d_8hpp_source.html │ │ ├── minimum_filter_8hpp.html │ │ ├── minimum_filter_8hpp.js │ │ ├── minimum_filter_8hpp_source.html │ │ ├── minus.svg │ │ ├── minusd.svg │ │ ├── mirror1d_8hpp.html │ │ ├── mirror1d_8hpp.js │ │ ├── mirror1d_8hpp_source.html │ │ ├── mirror2d_8hpp.html │ │ ├── mirror2d_8hpp.js │ │ ├── mirror2d_8hpp_source.html │ │ ├── mod_8hpp.html │ │ ├── mod_8hpp.js │ │ ├── mod_8hpp_source.html │ │ ├── multi__dot_8hpp.html │ │ ├── multi__dot_8hpp.js │ │ ├── multi__dot_8hpp_source.html │ │ ├── multiply_8hpp.html │ │ ├── multiply_8hpp.js │ │ ├── multiply_8hpp_source.html │ │ ├── namespacemembers.html │ │ ├── namespacemembers_b.html │ │ ├── namespacemembers_c.html │ │ ├── namespacemembers_d.html │ │ ├── namespacemembers_dup.js │ │ ├── namespacemembers_e.html │ │ ├── namespacemembers_enum.html │ │ ├── namespacemembers_f.html │ │ ├── namespacemembers_func.html │ │ ├── namespacemembers_func.js │ │ ├── namespacemembers_func_b.html │ │ ├── namespacemembers_func_c.html │ │ ├── namespacemembers_func_d.html │ │ ├── namespacemembers_func_e.html │ │ ├── namespacemembers_func_f.html │ │ ├── namespacemembers_func_g.html │ │ ├── namespacemembers_func_h.html │ │ ├── namespacemembers_func_i.html │ │ ├── namespacemembers_func_k.html │ │ ├── namespacemembers_func_l.html │ │ ├── namespacemembers_func_m.html │ │ ├── namespacemembers_func_n.html │ │ ├── namespacemembers_func_o.html │ │ ├── namespacemembers_func_p.html │ │ ├── namespacemembers_func_r.html │ │ ├── namespacemembers_func_s.html │ │ ├── namespacemembers_func_t.html │ │ ├── namespacemembers_func_u.html │ │ ├── namespacemembers_func_v.html │ │ ├── namespacemembers_func_w.html │ │ ├── namespacemembers_func_z.html │ │ ├── namespacemembers_g.html │ │ ├── namespacemembers_h.html │ │ ├── namespacemembers_i.html │ │ ├── namespacemembers_j.html │ │ ├── namespacemembers_k.html │ │ ├── namespacemembers_l.html │ │ ├── namespacemembers_m.html │ │ ├── namespacemembers_n.html │ │ ├── namespacemembers_o.html │ │ ├── namespacemembers_p.html │ │ ├── namespacemembers_r.html │ │ ├── namespacemembers_s.html │ │ ├── namespacemembers_t.html │ │ ├── namespacemembers_type.html │ │ ├── namespacemembers_u.html │ │ ├── namespacemembers_v.html │ │ ├── namespacemembers_vars.html │ │ ├── namespacemembers_w.html │ │ ├── namespacemembers_z.html │ │ ├── namespacenc.html │ │ ├── namespacenc.js │ │ ├── namespacenc_1_1broadcast.html │ │ ├── namespacenc_1_1constants.html │ │ ├── namespacenc_1_1coordinates.html │ │ ├── namespacenc_1_1coordinates.js │ │ ├── namespacenc_1_1coordinates_1_1reference__frames.html │ │ ├── namespacenc_1_1coordinates_1_1reference__frames.js │ │ ├── namespacenc_1_1coordinates_1_1reference__frames_1_1constants.html │ │ ├── namespacenc_1_1coordinates_1_1transforms.html │ │ ├── namespacenc_1_1detail.html │ │ ├── namespacenc_1_1edac.html │ │ ├── namespacenc_1_1edac.js │ │ ├── namespacenc_1_1edac_1_1detail.html │ │ ├── namespacenc_1_1endian.html │ │ ├── namespacenc_1_1error.html │ │ ├── namespacenc_1_1filesystem.html │ │ ├── namespacenc_1_1filesystem.js │ │ ├── namespacenc_1_1filter.html │ │ ├── namespacenc_1_1filter.js │ │ ├── namespacenc_1_1filter_1_1boundary.html │ │ ├── namespacenc_1_1image_processing.html │ │ ├── namespacenc_1_1image_processing.js │ │ ├── namespacenc_1_1integrate.html │ │ ├── namespacenc_1_1integrate.js │ │ ├── namespacenc_1_1linalg.html │ │ ├── namespacenc_1_1linalg.js │ │ ├── namespacenc_1_1linalg_1_1detail.html │ │ ├── namespacenc_1_1logger.html │ │ ├── namespacenc_1_1logger.js │ │ ├── namespacenc_1_1logger_1_1detail.html │ │ ├── namespacenc_1_1logger_1_1detail.js │ │ ├── namespacenc_1_1logger_1_1detail_1_1type__traits.html │ │ ├── namespacenc_1_1logger_1_1detail_1_1type__traits.js │ │ ├── namespacenc_1_1polynomial.html │ │ ├── namespacenc_1_1polynomial.js │ │ ├── namespacenc_1_1random.html │ │ ├── namespacenc_1_1random.js │ │ ├── namespacenc_1_1random_1_1detail.html │ │ ├── namespacenc_1_1roots.html │ │ ├── namespacenc_1_1roots.js │ │ ├── namespacenc_1_1rotations.html │ │ ├── namespacenc_1_1rotations.js │ │ ├── namespacenc_1_1special.html │ │ ├── namespacenc_1_1stl__algorithms.html │ │ ├── namespacenc_1_1type__traits.html │ │ ├── namespacenc_1_1type__traits.js │ │ ├── namespacenc_1_1utils.html │ │ ├── namespacenc_1_1utils.js │ │ ├── namespacenc_1_1utils_1_1timeit__detail.html │ │ ├── namespacenc_1_1utils_1_1timeit__detail.js │ │ ├── namespaces.html │ │ ├── namespaces_dup.js │ │ ├── nan__to__num_8hpp.html │ │ ├── nan__to__num_8hpp.js │ │ ├── nan__to__num_8hpp_source.html │ │ ├── nanargmax_8hpp.html │ │ ├── nanargmax_8hpp.js │ │ ├── nanargmax_8hpp_source.html │ │ ├── nanargmin_8hpp.html │ │ ├── nanargmin_8hpp.js │ │ ├── nanargmin_8hpp_source.html │ │ ├── nancumprod_8hpp.html │ │ ├── nancumprod_8hpp.js │ │ ├── nancumprod_8hpp_source.html │ │ ├── nancumsum_8hpp.html │ │ ├── nancumsum_8hpp.js │ │ ├── nancumsum_8hpp_source.html │ │ ├── nanmax_8hpp.html │ │ ├── nanmax_8hpp.js │ │ ├── nanmax_8hpp_source.html │ │ ├── nanmean_8hpp.html │ │ ├── nanmean_8hpp.js │ │ ├── nanmean_8hpp_source.html │ │ ├── nanmedian_8hpp.html │ │ ├── nanmedian_8hpp.js │ │ ├── nanmedian_8hpp_source.html │ │ ├── nanmin_8hpp.html │ │ ├── nanmin_8hpp.js │ │ ├── nanmin_8hpp_source.html │ │ ├── nanpercentile_8hpp.html │ │ ├── nanpercentile_8hpp.js │ │ ├── nanpercentile_8hpp_source.html │ │ ├── nanprod_8hpp.html │ │ ├── nanprod_8hpp.js │ │ ├── nanprod_8hpp_source.html │ │ ├── nans_8hpp.html │ │ ├── nans_8hpp.js │ │ ├── nans_8hpp_source.html │ │ ├── nans__like_8hpp.html │ │ ├── nans__like_8hpp.js │ │ ├── nans__like_8hpp_source.html │ │ ├── nanstdev_8hpp.html │ │ ├── nanstdev_8hpp.js │ │ ├── nanstdev_8hpp_source.html │ │ ├── nansum_8hpp.html │ │ ├── nansum_8hpp.js │ │ ├── nansum_8hpp_source.html │ │ ├── nanvar_8hpp.html │ │ ├── nanvar_8hpp.js │ │ ├── nanvar_8hpp_source.html │ │ ├── nav_f.png │ │ ├── nav_fd.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── nav_hd.png │ │ ├── navtree.css │ │ ├── navtree.js │ │ ├── navtreedata.js │ │ ├── navtreeindex0.js │ │ ├── navtreeindex1.js │ │ ├── navtreeindex10.js │ │ ├── navtreeindex11.js │ │ ├── navtreeindex12.js │ │ ├── navtreeindex13.js │ │ ├── navtreeindex14.js │ │ ├── navtreeindex15.js │ │ ├── navtreeindex16.js │ │ ├── navtreeindex17.js │ │ ├── navtreeindex18.js │ │ ├── navtreeindex19.js │ │ ├── navtreeindex2.js │ │ ├── navtreeindex20.js │ │ ├── navtreeindex21.js │ │ ├── navtreeindex22.js │ │ ├── navtreeindex3.js │ │ ├── navtreeindex4.js │ │ ├── navtreeindex5.js │ │ ├── navtreeindex6.js │ │ ├── navtreeindex7.js │ │ ├── navtreeindex8.js │ │ ├── navtreeindex9.js │ │ ├── nbytes_8hpp.html │ │ ├── nbytes_8hpp.js │ │ ├── nbytes_8hpp_source.html │ │ ├── nearest1d_8hpp.html │ │ ├── nearest1d_8hpp.js │ │ ├── nearest1d_8hpp_source.html │ │ ├── nearest2d_8hpp.html │ │ ├── nearest2d_8hpp.js │ │ ├── nearest2d_8hpp_source.html │ │ ├── negative_8hpp.html │ │ ├── negative_8hpp.js │ │ ├── negative_8hpp_source.html │ │ ├── negative_binomial_8hpp.html │ │ ├── negative_binomial_8hpp.js │ │ ├── negative_binomial_8hpp_source.html │ │ ├── newbyteorder_8hpp.html │ │ ├── newbyteorder_8hpp.js │ │ ├── newbyteorder_8hpp_source.html │ │ ├── non_central_chi_squared_8hpp.html │ │ ├── non_central_chi_squared_8hpp.js │ │ ├── non_central_chi_squared_8hpp_source.html │ │ ├── none_8hpp.html │ │ ├── none_8hpp.js │ │ ├── none_8hpp_source.html │ │ ├── nonzero_8hpp.html │ │ ├── nonzero_8hpp.js │ │ ├── nonzero_8hpp_source.html │ │ ├── norm_8hpp.html │ │ ├── norm_8hpp.js │ │ ├── norm_8hpp_source.html │ │ ├── normal_8hpp.html │ │ ├── normal_8hpp.js │ │ ├── normal_8hpp_source.html │ │ ├── normalize_8hpp.html │ │ ├── normalize_8hpp.js │ │ ├── normalize_8hpp_source.html │ │ ├── not__equal_8hpp.html │ │ ├── not__equal_8hpp.js │ │ ├── not__equal_8hpp_source.html │ │ ├── nth__root_8hpp.html │ │ ├── nth__root_8hpp.js │ │ ├── nth__root_8hpp_source.html │ │ ├── num2str_8hpp.html │ │ ├── num2str_8hpp.js │ │ ├── num2str_8hpp_source.html │ │ ├── ones_8hpp.html │ │ ├── ones_8hpp.js │ │ ├── ones_8hpp_source.html │ │ ├── ones__like_8hpp.html │ │ ├── ones__like_8hpp.js │ │ ├── ones__like_8hpp_source.html │ │ ├── open.png │ │ ├── outer_8hpp.html │ │ ├── outer_8hpp.js │ │ ├── outer_8hpp_source.html │ │ ├── packbits_8hpp.html │ │ ├── packbits_8hpp.js │ │ ├── packbits_8hpp_source.html │ │ ├── pad_8hpp.html │ │ ├── pad_8hpp.js │ │ ├── pad_8hpp_source.html │ │ ├── pages.html │ │ ├── partition_8hpp.html │ │ ├── partition_8hpp.js │ │ ├── partition_8hpp_source.html │ │ ├── percentile_8hpp.html │ │ ├── percentile_8hpp.js │ │ ├── percentile_8hpp_source.html │ │ ├── percentile_filter1d_8hpp.html │ │ ├── percentile_filter1d_8hpp.js │ │ ├── percentile_filter1d_8hpp_source.html │ │ ├── percentile_filter_8hpp.html │ │ ├── percentile_filter_8hpp.js │ │ ├── percentile_filter_8hpp_source.html │ │ ├── permutation_8hpp.html │ │ ├── permutation_8hpp.js │ │ ├── permutation_8hpp_source.html │ │ ├── pinv_8hpp.html │ │ ├── pinv_8hpp.js │ │ ├── pinv_8hpp_source.html │ │ ├── pivot_l_u__decomposition_8hpp.html │ │ ├── pivot_l_u__decomposition_8hpp.js │ │ ├── pivot_l_u__decomposition_8hpp_source.html │ │ ├── place_8hpp.html │ │ ├── place_8hpp.js │ │ ├── place_8hpp_source.html │ │ ├── plus.svg │ │ ├── plusd.svg │ │ ├── pnr_8hpp.html │ │ ├── pnr_8hpp.js │ │ ├── pnr_8hpp_source.html │ │ ├── poisson_8hpp.html │ │ ├── poisson_8hpp.js │ │ ├── poisson_8hpp_source.html │ │ ├── polar_8hpp.html │ │ ├── polar_8hpp.js │ │ ├── polar_8hpp_source.html │ │ ├── polygamma_8hpp.html │ │ ├── polygamma_8hpp.js │ │ ├── polygamma_8hpp_source.html │ │ ├── prime_8hpp.html │ │ ├── prime_8hpp.js │ │ ├── prime_8hpp_source.html │ │ ├── print_8hpp.html │ │ ├── print_8hpp.js │ │ ├── print_8hpp_source.html │ │ ├── prod_8hpp.html │ │ ├── prod_8hpp.js │ │ ├── prod_8hpp_source.html │ │ ├── proj_8hpp.html │ │ ├── proj_8hpp.js │ │ ├── proj_8hpp_source.html │ │ ├── ptp_8hpp.html │ │ ├── ptp_8hpp.js │ │ ├── ptp_8hpp_source.html │ │ ├── put_8hpp.html │ │ ├── put_8hpp.js │ │ ├── put_8hpp_source.html │ │ ├── putmask_8hpp.html │ │ ├── putmask_8hpp.js │ │ ├── putmask_8hpp_source.html │ │ ├── rad2deg_8hpp.html │ │ ├── rad2deg_8hpp.js │ │ ├── rad2deg_8hpp_source.html │ │ ├── radian_seperation_8hpp.html │ │ ├── radian_seperation_8hpp.js │ │ ├── radian_seperation_8hpp_source.html │ │ ├── radians_8hpp.html │ │ ├── radians_8hpp.js │ │ ├── radians_8hpp_source.html │ │ ├── rand_8hpp.html │ │ ├── rand_8hpp.js │ │ ├── rand_8hpp_source.html │ │ ├── rand_float_8hpp.html │ │ ├── rand_float_8hpp.js │ │ ├── rand_float_8hpp_source.html │ │ ├── rand_int_8hpp.html │ │ ├── rand_int_8hpp.js │ │ ├── rand_int_8hpp_source.html │ │ ├── rand_n_8hpp.html │ │ ├── rand_n_8hpp.js │ │ ├── rand_n_8hpp_source.html │ │ ├── rank_filter1d_8hpp.html │ │ ├── rank_filter1d_8hpp.js │ │ ├── rank_filter1d_8hpp_source.html │ │ ├── rank_filter_8hpp.html │ │ ├── rank_filter_8hpp.js │ │ ├── rank_filter_8hpp_source.html │ │ ├── ravel_8hpp.html │ │ ├── ravel_8hpp.js │ │ ├── ravel_8hpp_source.html │ │ ├── real_8hpp.html │ │ ├── real_8hpp.js │ │ ├── real_8hpp_source.html │ │ ├── reciprocal_8hpp.html │ │ ├── reciprocal_8hpp.js │ │ ├── reciprocal_8hpp_source.html │ │ ├── reflect1d_8hpp.html │ │ ├── reflect1d_8hpp.js │ │ ├── reflect1d_8hpp_source.html │ │ ├── reflect2d_8hpp.html │ │ ├── reflect2d_8hpp.js │ │ ├── reflect2d_8hpp_source.html │ │ ├── remainder_8hpp.html │ │ ├── remainder_8hpp.js │ │ ├── remainder_8hpp_source.html │ │ ├── repeat_8hpp.html │ │ ├── repeat_8hpp.js │ │ ├── repeat_8hpp_source.html │ │ ├── replace_8hpp.html │ │ ├── replace_8hpp.js │ │ ├── replace_8hpp_source.html │ │ ├── reshape_8hpp.html │ │ ├── reshape_8hpp.js │ │ ├── reshape_8hpp_source.html │ │ ├── resize.js │ │ ├── resize_fast_8hpp.html │ │ ├── resize_fast_8hpp.js │ │ ├── resize_fast_8hpp_source.html │ │ ├── resize_slow_8hpp.html │ │ ├── resize_slow_8hpp.js │ │ ├── resize_slow_8hpp_source.html │ │ ├── riemann__zeta_8hpp.html │ │ ├── riemann__zeta_8hpp.js │ │ ├── riemann__zeta_8hpp_source.html │ │ ├── right__shift_8hpp.html │ │ ├── right__shift_8hpp.js │ │ ├── right__shift_8hpp_source.html │ │ ├── rint_8hpp.html │ │ ├── rint_8hpp.js │ │ ├── rint_8hpp_source.html │ │ ├── rms_8hpp.html │ │ ├── rms_8hpp.js │ │ ├── rms_8hpp_source.html │ │ ├── rodrigues_rotation_8hpp.html │ │ ├── rodrigues_rotation_8hpp.js │ │ ├── rodrigues_rotation_8hpp_source.html │ │ ├── roll_8hpp.html │ │ ├── roll_8hpp.js │ │ ├── roll_8hpp_source.html │ │ ├── romberg_8hpp.html │ │ ├── romberg_8hpp.js │ │ ├── romberg_8hpp_source.html │ │ ├── rot90_8hpp.html │ │ ├── rot90_8hpp.js │ │ ├── rot90_8hpp_source.html │ │ ├── round_8hpp.html │ │ ├── round_8hpp.js │ │ ├── round_8hpp_source.html │ │ ├── row__stack_8hpp.html │ │ ├── row__stack_8hpp.js │ │ ├── row__stack_8hpp_source.html │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_16.html │ │ │ ├── all_16.js │ │ │ ├── all_17.html │ │ │ ├── all_17.js │ │ │ ├── all_18.html │ │ │ ├── all_18.js │ │ │ ├── all_19.html │ │ │ ├── all_19.js │ │ │ ├── all_1a.html │ │ │ ├── all_1a.js │ │ │ ├── all_1b.html │ │ │ ├── all_1b.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_10.html │ │ │ ├── classes_10.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── classes_3.html │ │ │ ├── classes_3.js │ │ │ ├── classes_4.html │ │ │ ├── classes_4.js │ │ │ ├── classes_5.html │ │ │ ├── classes_5.js │ │ │ ├── classes_6.html │ │ │ ├── classes_6.js │ │ │ ├── classes_7.html │ │ │ ├── classes_7.js │ │ │ ├── classes_8.html │ │ │ ├── classes_8.js │ │ │ ├── classes_9.html │ │ │ ├── classes_9.js │ │ │ ├── classes_a.html │ │ │ ├── classes_a.js │ │ │ ├── classes_b.html │ │ │ ├── classes_b.js │ │ │ ├── classes_c.html │ │ │ ├── classes_c.js │ │ │ ├── classes_d.html │ │ │ ├── classes_d.js │ │ │ ├── classes_e.html │ │ │ ├── classes_e.js │ │ │ ├── classes_f.html │ │ │ ├── classes_f.js │ │ │ ├── close.svg │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── defines_2.html │ │ │ ├── defines_2.js │ │ │ ├── defines_3.html │ │ │ ├── defines_3.js │ │ │ ├── defines_4.html │ │ │ ├── defines_4.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enums_1.html │ │ │ ├── enums_1.js │ │ │ ├── enums_2.html │ │ │ ├── enums_2.js │ │ │ ├── enums_3.html │ │ │ ├── enums_3.js │ │ │ ├── enums_4.html │ │ │ ├── enums_4.js │ │ │ ├── enums_5.html │ │ │ ├── enums_5.js │ │ │ ├── enums_6.html │ │ │ ├── enums_6.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── enumvalues_1.html │ │ │ ├── enumvalues_1.js │ │ │ ├── enumvalues_2.html │ │ │ ├── enumvalues_2.js │ │ │ ├── enumvalues_3.html │ │ │ ├── enumvalues_3.js │ │ │ ├── enumvalues_4.html │ │ │ ├── enumvalues_4.js │ │ │ ├── enumvalues_5.html │ │ │ ├── enumvalues_5.js │ │ │ ├── enumvalues_6.html │ │ │ ├── enumvalues_6.js │ │ │ ├── enumvalues_7.html │ │ │ ├── enumvalues_7.js │ │ │ ├── enumvalues_8.html │ │ │ ├── enumvalues_8.js │ │ │ ├── enumvalues_9.html │ │ │ ├── enumvalues_9.js │ │ │ ├── enumvalues_a.html │ │ │ ├── enumvalues_a.js │ │ │ ├── enumvalues_b.html │ │ │ ├── enumvalues_b.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_10.html │ │ │ ├── files_10.js │ │ │ ├── files_11.html │ │ │ ├── files_11.js │ │ │ ├── files_12.html │ │ │ ├── files_12.js │ │ │ ├── files_13.html │ │ │ ├── files_13.js │ │ │ ├── files_14.html │ │ │ ├── files_14.js │ │ │ ├── files_15.html │ │ │ ├── files_15.js │ │ │ ├── files_16.html │ │ │ ├── files_16.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── files_6.html │ │ │ ├── files_6.js │ │ │ ├── files_7.html │ │ │ ├── files_7.js │ │ │ ├── files_8.html │ │ │ ├── files_8.js │ │ │ ├── files_9.html │ │ │ ├── files_9.js │ │ │ ├── files_a.html │ │ │ ├── files_a.js │ │ │ ├── files_b.html │ │ │ ├── files_b.js │ │ │ ├── files_c.html │ │ │ ├── files_c.js │ │ │ ├── files_d.html │ │ │ ├── files_d.js │ │ │ ├── files_e.html │ │ │ ├── files_e.js │ │ │ ├── files_f.html │ │ │ ├── files_f.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_10.html │ │ │ ├── functions_10.js │ │ │ ├── functions_11.html │ │ │ ├── functions_11.js │ │ │ ├── functions_12.html │ │ │ ├── functions_12.js │ │ │ ├── functions_13.html │ │ │ ├── functions_13.js │ │ │ ├── functions_14.html │ │ │ ├── functions_14.js │ │ │ ├── functions_15.html │ │ │ ├── functions_15.js │ │ │ ├── functions_16.html │ │ │ ├── functions_16.js │ │ │ ├── functions_17.html │ │ │ ├── functions_17.js │ │ │ ├── functions_18.html │ │ │ ├── functions_18.js │ │ │ ├── functions_19.html │ │ │ ├── functions_19.js │ │ │ ├── functions_1a.html │ │ │ ├── functions_1a.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── functions_9.html │ │ │ ├── functions_9.js │ │ │ ├── functions_a.html │ │ │ ├── functions_a.js │ │ │ ├── functions_b.html │ │ │ ├── functions_b.js │ │ │ ├── functions_c.html │ │ │ ├── functions_c.js │ │ │ ├── functions_d.html │ │ │ ├── functions_d.js │ │ │ ├── functions_e.html │ │ │ ├── functions_e.js │ │ │ ├── functions_f.html │ │ │ ├── functions_f.js │ │ │ ├── mag.svg │ │ │ ├── mag_d.svg │ │ │ ├── mag_sel.svg │ │ │ ├── mag_seld.svg │ │ │ ├── namespaces_0.html │ │ │ ├── namespaces_0.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── related_0.html │ │ │ ├── related_0.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── typedefs_2.html │ │ │ ├── typedefs_2.js │ │ │ ├── typedefs_3.html │ │ │ ├── typedefs_3.js │ │ │ ├── typedefs_4.html │ │ │ ├── typedefs_4.js │ │ │ ├── typedefs_5.html │ │ │ ├── typedefs_5.js │ │ │ ├── typedefs_6.html │ │ │ ├── typedefs_6.js │ │ │ ├── typedefs_7.html │ │ │ ├── typedefs_7.js │ │ │ ├── typedefs_8.html │ │ │ ├── typedefs_8.js │ │ │ ├── typedefs_9.html │ │ │ ├── typedefs_9.js │ │ │ ├── typedefs_a.html │ │ │ ├── typedefs_a.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_14.html │ │ │ ├── variables_14.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ ├── searchsorted_8hpp.html │ │ ├── searchsorted_8hpp.js │ │ ├── searchsorted_8hpp_source.html │ │ ├── select_8hpp.html │ │ ├── select_8hpp.js │ │ ├── select_8hpp_source.html │ │ ├── setdiff1d_8hpp.html │ │ ├── setdiff1d_8hpp.js │ │ ├── setdiff1d_8hpp_source.html │ │ ├── shuffle_8hpp.html │ │ ├── shuffle_8hpp.js │ │ ├── shuffle_8hpp_source.html │ │ ├── sign_8hpp.html │ │ ├── sign_8hpp.js │ │ ├── sign_8hpp_source.html │ │ ├── signbit_8hpp.html │ │ ├── signbit_8hpp.js │ │ ├── signbit_8hpp_source.html │ │ ├── simpson_8hpp.html │ │ ├── simpson_8hpp.js │ │ ├── simpson_8hpp_source.html │ │ ├── sin_8hpp.html │ │ ├── sin_8hpp.js │ │ ├── sin_8hpp_source.html │ │ ├── sinc_8hpp.html │ │ ├── sinc_8hpp.js │ │ ├── sinc_8hpp_source.html │ │ ├── sinh_8hpp.html │ │ ├── sinh_8hpp.js │ │ ├── sinh_8hpp_source.html │ │ ├── size_8hpp.html │ │ ├── size_8hpp.js │ │ ├── size_8hpp_source.html │ │ ├── softmax_8hpp.html │ │ ├── softmax_8hpp.js │ │ ├── softmax_8hpp_source.html │ │ ├── solve_8hpp.html │ │ ├── solve_8hpp.js │ │ ├── solve_8hpp_source.html │ │ ├── sort_8hpp.html │ │ ├── sort_8hpp.js │ │ ├── sort_8hpp_source.html │ │ ├── spherical__bessel__jn_8hpp.html │ │ ├── spherical__bessel__jn_8hpp.js │ │ ├── spherical__bessel__jn_8hpp_source.html │ │ ├── spherical__bessel__yn_8hpp.html │ │ ├── spherical__bessel__yn_8hpp.js │ │ ├── spherical__bessel__yn_8hpp_source.html │ │ ├── spherical__hankel__1_8hpp.html │ │ ├── spherical__hankel__1_8hpp.js │ │ ├── spherical__hankel__1_8hpp_source.html │ │ ├── spherical__hankel__2_8hpp.html │ │ ├── spherical__hankel__2_8hpp.js │ │ ├── spherical__hankel__2_8hpp_source.html │ │ ├── spherical__harmonic_8hpp.html │ │ ├── spherical__harmonic_8hpp.js │ │ ├── spherical__harmonic_8hpp_source.html │ │ ├── split_8hpp.html │ │ ├── split_8hpp.js │ │ ├── split_8hpp_source.html │ │ ├── splitbar.png │ │ ├── splitbard.png │ │ ├── sqr_8hpp.html │ │ ├── sqr_8hpp.js │ │ ├── sqr_8hpp_source.html │ │ ├── sqrt_8hpp.html │ │ ├── sqrt_8hpp.js │ │ ├── sqrt_8hpp_source.html │ │ ├── square_8hpp.html │ │ ├── square_8hpp.js │ │ ├── square_8hpp_source.html │ │ ├── stack_8hpp.html │ │ ├── stack_8hpp.js │ │ ├── stack_8hpp_source.html │ │ ├── standard_normal_8hpp.html │ │ ├── standard_normal_8hpp.js │ │ ├── standard_normal_8hpp_source.html │ │ ├── stdev_8hpp.html │ │ ├── stdev_8hpp.js │ │ ├── stdev_8hpp_source.html │ │ ├── structnc_1_1all__arithmetic.html │ │ ├── structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html │ │ ├── structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.js │ │ ├── structnc_1_1all__arithmetic_3_01_t_01_4.html │ │ ├── structnc_1_1all__arithmetic_3_01_t_01_4.js │ │ ├── structnc_1_1all__same.html │ │ ├── structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html │ │ ├── structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.js │ │ ├── structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html │ │ ├── structnc_1_1all__same_3_01_t1_00_01_t2_01_4.js │ │ ├── structnc_1_1greater_than.html │ │ ├── structnc_1_1greater_than.js │ │ ├── structnc_1_1is__complex.html │ │ ├── structnc_1_1is__complex.js │ │ ├── structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html │ │ ├── structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.js │ │ ├── structnc_1_1is__ndarray__int.html │ │ ├── structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html │ │ ├── structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.js │ │ ├── structnc_1_1is__valid__dtype.html │ │ ├── structnc_1_1is__valid__dtype.js │ │ ├── structnc_1_1type__traits_1_1is__ndarray__int.html │ │ ├── structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html │ │ ├── structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.js │ │ ├── structnc_1_1type__traits_1_1is__ndarray__signed__int.html │ │ ├── structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html │ │ ├── structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.js │ │ ├── structnc_1_1utils_1_1timeit__detail_1_1_result.html │ │ ├── structnc_1_1utils_1_1timeit__detail_1_1_result.js │ │ ├── student_t_8hpp.html │ │ ├── student_t_8hpp.js │ │ ├── student_t_8hpp_source.html │ │ ├── subtract_8hpp.html │ │ ├── subtract_8hpp.js │ │ ├── subtract_8hpp_source.html │ │ ├── sum_8hpp.html │ │ ├── sum_8hpp.js │ │ ├── sum_8hpp_source.html │ │ ├── svd_8hpp.html │ │ ├── svd_8hpp.js │ │ ├── svd_8hpp_source.html │ │ ├── swap_8hpp.html │ │ ├── swap_8hpp.js │ │ ├── swap_8hpp_source.html │ │ ├── swap_cols_8hpp.html │ │ ├── swap_cols_8hpp.js │ │ ├── swap_cols_8hpp_source.html │ │ ├── swap_rows_8hpp.html │ │ ├── swap_rows_8hpp.js │ │ ├── swap_rows_8hpp_source.html │ │ ├── swapaxes_8hpp.html │ │ ├── swapaxes_8hpp.js │ │ ├── swapaxes_8hpp_source.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_ad.png │ │ ├── tab_b.png │ │ ├── tab_bd.png │ │ ├── tab_h.png │ │ ├── tab_hd.png │ │ ├── tab_s.png │ │ ├── tab_sd.png │ │ ├── tabs.css │ │ ├── take_8hpp.html │ │ ├── take_8hpp.js │ │ ├── take_8hpp_source.html │ │ ├── tan_8hpp.html │ │ ├── tan_8hpp.js │ │ ├── tan_8hpp_source.html │ │ ├── tanh_8hpp.html │ │ ├── tanh_8hpp.js │ │ ├── tanh_8hpp_source.html │ │ ├── tile_8hpp.html │ │ ├── tile_8hpp.js │ │ ├── tile_8hpp_source.html │ │ ├── timeit_8hpp.html │ │ ├── timeit_8hpp.js │ │ ├── timeit_8hpp_source.html │ │ ├── to_stl_vector_8hpp.html │ │ ├── to_stl_vector_8hpp.js │ │ ├── to_stl_vector_8hpp_source.html │ │ ├── tofile_8hpp.html │ │ ├── tofile_8hpp.js │ │ ├── tofile_8hpp_source.html │ │ ├── trace_8hpp.html │ │ ├── trace_8hpp.js │ │ ├── trace_8hpp_source.html │ │ ├── transpose_8hpp.html │ │ ├── transpose_8hpp.js │ │ ├── transpose_8hpp_source.html │ │ ├── trapazoidal_8hpp.html │ │ ├── trapazoidal_8hpp.js │ │ ├── trapazoidal_8hpp_source.html │ │ ├── trapz_8hpp.html │ │ ├── trapz_8hpp.js │ │ ├── trapz_8hpp_source.html │ │ ├── tri_8hpp.html │ │ ├── tri_8hpp.js │ │ ├── tri_8hpp_source.html │ │ ├── triangle_8hpp.html │ │ ├── triangle_8hpp.js │ │ ├── triangle_8hpp_source.html │ │ ├── trigamma_8hpp.html │ │ ├── trigamma_8hpp.js │ │ ├── trigamma_8hpp_source.html │ │ ├── trim__zeros_8hpp.html │ │ ├── trim__zeros_8hpp.js │ │ ├── trim__zeros_8hpp_source.html │ │ ├── trim_boundary1d_8hpp.html │ │ ├── trim_boundary1d_8hpp.js │ │ ├── trim_boundary1d_8hpp_source.html │ │ ├── trim_boundary2d_8hpp.html │ │ ├── trim_boundary2d_8hpp.js │ │ ├── trim_boundary2d_8hpp_source.html │ │ ├── trunc_8hpp.html │ │ ├── trunc_8hpp.js │ │ ├── trunc_8hpp_source.html │ │ ├── uniform_8hpp.html │ │ ├── uniform_8hpp.js │ │ ├── uniform_8hpp_source.html │ │ ├── uniform_filter1d_8hpp.html │ │ ├── uniform_filter1d_8hpp.js │ │ ├── uniform_filter1d_8hpp_source.html │ │ ├── uniform_filter_8hpp.html │ │ ├── uniform_filter_8hpp.js │ │ ├── uniform_filter_8hpp_source.html │ │ ├── uniform_on_sphere_8hpp.html │ │ ├── uniform_on_sphere_8hpp.js │ │ ├── uniform_on_sphere_8hpp_source.html │ │ ├── union1d_8hpp.html │ │ ├── union1d_8hpp.js │ │ ├── union1d_8hpp_source.html │ │ ├── unique_8hpp.html │ │ ├── unique_8hpp.js │ │ ├── unique_8hpp_source.html │ │ ├── unpackbits_8hpp.html │ │ ├── unpackbits_8hpp.js │ │ ├── unpackbits_8hpp_source.html │ │ ├── unwrap_8hpp.html │ │ ├── unwrap_8hpp.js │ │ ├── unwrap_8hpp_source.html │ │ ├── value2str_8hpp.html │ │ ├── value2str_8hpp.js │ │ ├── value2str_8hpp_source.html │ │ ├── vander_8hpp.html │ │ ├── vander_8hpp.js │ │ ├── vander_8hpp_source.html │ │ ├── var_8hpp.html │ │ ├── var_8hpp.js │ │ ├── var_8hpp_source.html │ │ ├── vsplit_8hpp.html │ │ ├── vsplit_8hpp.js │ │ ├── vsplit_8hpp_source.html │ │ ├── vstack_8hpp.html │ │ ├── vstack_8hpp.js │ │ ├── vstack_8hpp_source.html │ │ ├── wahbas_problem_8hpp.html │ │ ├── wahbas_problem_8hpp.js │ │ ├── wahbas_problem_8hpp_source.html │ │ ├── weibull_8hpp.html │ │ ├── weibull_8hpp.js │ │ ├── weibull_8hpp_source.html │ │ ├── where_8hpp.html │ │ ├── where_8hpp.js │ │ ├── where_8hpp_source.html │ │ ├── window_exceedances_8hpp.html │ │ ├── window_exceedances_8hpp.js │ │ ├── window_exceedances_8hpp_source.html │ │ ├── wrap1d_8hpp.html │ │ ├── wrap1d_8hpp.js │ │ ├── wrap1d_8hpp_source.html │ │ ├── wrap2_pi_8hpp.html │ │ ├── wrap2_pi_8hpp.js │ │ ├── wrap2_pi_8hpp_source.html │ │ ├── wrap2d_8hpp.html │ │ ├── wrap2d_8hpp.js │ │ ├── wrap2d_8hpp_source.html │ │ ├── wrap_8hpp.html │ │ ├── wrap_8hpp.js │ │ ├── wrap_8hpp_source.html │ │ ├── zeros_8hpp.html │ │ ├── zeros_8hpp.js │ │ ├── zeros_8hpp_source.html │ │ ├── zeros__like_8hpp.html │ │ ├── zeros__like_8hpp.js │ │ └── zeros__like_8hpp_source.html │ ├── new_footer.html │ ├── new_header.html │ └── new_stylesheet.css ├── index.html ├── logo │ ├── NumCppLogo.png │ ├── NumCppLogo.xcf │ ├── NumCppLogoDoxygen.png │ └── NumCppLogoDoxygen.xcf └── markdown │ ├── Building.md │ ├── CompilerFlags.md │ ├── Installation.md │ └── ReleaseNotes.md ├── examples ├── CMakeLists.txt ├── GaussNewtonNlls │ ├── CMakeLists.txt │ └── GaussNewtonNlls.cpp ├── InterfaceWithEigen │ ├── CMakeLists.txt │ └── InterfaceWithEigen.cpp ├── InterfaceWithOpenCV │ ├── CMakeLists.txt │ └── InterfaceWithOpenCV.cpp └── ReadMe │ ├── CMakeLists.txt │ └── ReadMe.cpp ├── include ├── NumCpp.hpp └── NumCpp │ ├── Coordinates.hpp │ ├── Coordinates │ ├── Cartesian.hpp │ ├── Euler.hpp │ ├── Orientation.hpp │ ├── ReferenceFrames.hpp │ ├── ReferenceFrames │ │ ├── AER.hpp │ │ ├── Celestial.hpp │ │ ├── Constants.hpp │ │ ├── ECEF.hpp │ │ ├── ENU.hpp │ │ ├── Geocentric.hpp │ │ ├── LLA.hpp │ │ └── NED.hpp │ ├── Transforms.hpp │ └── Transforms │ │ ├── AERtoECEF.hpp │ │ ├── AERtoENU.hpp │ │ ├── AERtoLLA.hpp │ │ ├── AERtoNED.hpp │ │ ├── ECEFEulerToENURollPitchYaw.hpp │ │ ├── ECEFEulerToNEDRollPitchYaw.hpp │ │ ├── ECEFtoAER.hpp │ │ ├── ECEFtoENU.hpp │ │ ├── ECEFtoLLA.hpp │ │ ├── ECEFtoNED.hpp │ │ ├── ENURollPitchYawToECEFEuler.hpp │ │ ├── ENUUnitVecsInECEF.hpp │ │ ├── ENUtoAER.hpp │ │ ├── ENUtoECEF.hpp │ │ ├── ENUtoLLA.hpp │ │ ├── ENUtoNED.hpp │ │ ├── LLAtoAER.hpp │ │ ├── LLAtoECEF.hpp │ │ ├── LLAtoENU.hpp │ │ ├── LLAtoGeocentric.hpp │ │ ├── LLAtoNED.hpp │ │ ├── NEDRollPitchYawToECEFEuler.hpp │ │ ├── NEDUnitVecsInECEF.hpp │ │ ├── NEDtoAER.hpp │ │ ├── NEDtoECEF.hpp │ │ ├── NEDtoENU.hpp │ │ ├── NEDtoLLA.hpp │ │ ├── geocentricRadius.hpp │ │ └── geocentricToLLA.hpp │ ├── Core.hpp │ ├── Core │ ├── Constants.hpp │ ├── DataCube.hpp │ ├── DtypeInfo.hpp │ ├── Enums.hpp │ ├── Internal │ │ ├── Endian.hpp │ │ ├── Error.hpp │ │ ├── StaticAsserts.hpp │ │ ├── StdComplexOperators.hpp │ │ ├── StlAlgorithms.hpp │ │ ├── TypeTraits.hpp │ │ └── Version.hpp │ ├── Shape.hpp │ ├── Slice.hpp │ ├── Timer.hpp │ └── Types.hpp │ ├── DateTime.hpp │ ├── DateTime │ ├── Clock.hpp │ └── DateTime.hpp │ ├── Filter.hpp │ ├── Filter │ ├── Boundaries │ │ ├── Boundaries1d │ │ │ ├── addBoundary1d.hpp │ │ │ ├── constant1d.hpp │ │ │ ├── mirror1d.hpp │ │ │ ├── nearest1d.hpp │ │ │ ├── reflect1d.hpp │ │ │ ├── trimBoundary1d.hpp │ │ │ └── wrap1d.hpp │ │ ├── Boundaries2d │ │ │ ├── addBoundary2d.hpp │ │ │ ├── constant2d.hpp │ │ │ ├── fillCorners.hpp │ │ │ ├── mirror2d.hpp │ │ │ ├── nearest2d.hpp │ │ │ ├── reflect2d.hpp │ │ │ ├── trimBoundary2d.hpp │ │ │ └── wrap2d.hpp │ │ └── Boundary.hpp │ └── Filters │ │ ├── Filters1d │ │ ├── complementaryMeanFilter1d.hpp │ │ ├── complementaryMedianFilter1d.hpp │ │ ├── convolve1d.hpp │ │ ├── gaussianFilter1d.hpp │ │ ├── maximumFilter1d.hpp │ │ ├── meanFilter1d.hpp │ │ ├── medianFilter1d.hpp │ │ ├── minimumFilter1d.hpp │ │ ├── percentileFilter1d.hpp │ │ ├── rankFilter1d.hpp │ │ └── uniformFilter1d.hpp │ │ └── Filters2d │ │ ├── complementaryMeanFilter.hpp │ │ ├── complementaryMedianFilter.hpp │ │ ├── convolve.hpp │ │ ├── gaussianFilter.hpp │ │ ├── laplace.hpp │ │ ├── maximumFilter.hpp │ │ ├── meanFilter.hpp │ │ ├── medianFilter.hpp │ │ ├── minimumFilter.hpp │ │ ├── percentileFilter.hpp │ │ ├── rankFilter.hpp │ │ └── uniformFilter.hpp │ ├── Functions.hpp │ ├── Functions │ ├── abs.hpp │ ├── add.hpp │ ├── alen.hpp │ ├── all.hpp │ ├── allclose.hpp │ ├── amax.hpp │ ├── amin.hpp │ ├── angle.hpp │ ├── any.hpp │ ├── append.hpp │ ├── applyFunction.hpp │ ├── applyPoly1d.hpp │ ├── arange.hpp │ ├── arccos.hpp │ ├── arccosh.hpp │ ├── arcsin.hpp │ ├── arcsinh.hpp │ ├── arctan.hpp │ ├── arctan2.hpp │ ├── arctanh.hpp │ ├── argmax.hpp │ ├── argmin.hpp │ ├── argpartition.hpp │ ├── argsort.hpp │ ├── argwhere.hpp │ ├── around.hpp │ ├── array_equal.hpp │ ├── array_equiv.hpp │ ├── asarray.hpp │ ├── astype.hpp │ ├── average.hpp │ ├── bartlett.hpp │ ├── binaryRepr.hpp │ ├── bincount.hpp │ ├── bit_count.hpp │ ├── bitwise_and.hpp │ ├── bitwise_not.hpp │ ├── bitwise_or.hpp │ ├── bitwise_xor.hpp │ ├── blackman.hpp │ ├── byteswap.hpp │ ├── cbrt.hpp │ ├── ceil.hpp │ ├── centerOfMass.hpp │ ├── clip.hpp │ ├── column_stack.hpp │ ├── complex.hpp │ ├── concatenate.hpp │ ├── conj.hpp │ ├── contains.hpp │ ├── copy.hpp │ ├── copySign.hpp │ ├── copyto.hpp │ ├── corrcoef.hpp │ ├── cos.hpp │ ├── cosh.hpp │ ├── count_nonzero.hpp │ ├── cov.hpp │ ├── cov_inv.hpp │ ├── cross.hpp │ ├── cube.hpp │ ├── cumprod.hpp │ ├── cumsum.hpp │ ├── deg2rad.hpp │ ├── degrees.hpp │ ├── deleteIndices.hpp │ ├── diag.hpp │ ├── diagflat.hpp │ ├── diagonal.hpp │ ├── diff.hpp │ ├── digitize.hpp │ ├── divide.hpp │ ├── dot.hpp │ ├── dump.hpp │ ├── empty.hpp │ ├── empty_like.hpp │ ├── endianess.hpp │ ├── equal.hpp │ ├── exp.hpp │ ├── exp2.hpp │ ├── expm1.hpp │ ├── extract.hpp │ ├── eye.hpp │ ├── fillDiagnol.hpp │ ├── find.hpp │ ├── fix.hpp │ ├── flatnonzero.hpp │ ├── flatten.hpp │ ├── flip.hpp │ ├── fliplr.hpp │ ├── flipud.hpp │ ├── floor.hpp │ ├── floor_divide.hpp │ ├── fmax.hpp │ ├── fmin.hpp │ ├── fmod.hpp │ ├── frombuffer.hpp │ ├── fromfile.hpp │ ├── fromfunction.hpp │ ├── fromiter.hpp │ ├── fromstring.hpp │ ├── full.hpp │ ├── full_like.hpp │ ├── gcd.hpp │ ├── geomspace.hpp │ ├── gradient.hpp │ ├── greater.hpp │ ├── greater_equal.hpp │ ├── hamming.hpp │ ├── hammingEncode.hpp │ ├── hanning.hpp │ ├── histogram.hpp │ ├── hsplit.hpp │ ├── hstack.hpp │ ├── hypot.hpp │ ├── identity.hpp │ ├── imag.hpp │ ├── inner.hpp │ ├── insert.hpp │ ├── interp.hpp │ ├── intersect1d.hpp │ ├── invert.hpp │ ├── isclose.hpp │ ├── isinf.hpp │ ├── isnan.hpp │ ├── isneginf.hpp │ ├── isposinf.hpp │ ├── kaiser.hpp │ ├── lcm.hpp │ ├── ldexp.hpp │ ├── left_shift.hpp │ ├── less.hpp │ ├── less_equal.hpp │ ├── linspace.hpp │ ├── load.hpp │ ├── log.hpp │ ├── log10.hpp │ ├── log1p.hpp │ ├── log2.hpp │ ├── logaddexp.hpp │ ├── logaddexp2.hpp │ ├── logb.hpp │ ├── logical_and.hpp │ ├── logical_not.hpp │ ├── logical_or.hpp │ ├── logical_xor.hpp │ ├── logspace.hpp │ ├── matmul.hpp │ ├── max.hpp │ ├── maximum.hpp │ ├── mean.hpp │ ├── median.hpp │ ├── meshgrid.hpp │ ├── min.hpp │ ├── minimum.hpp │ ├── mod.hpp │ ├── multiply.hpp │ ├── nan_to_num.hpp │ ├── nanargmax.hpp │ ├── nanargmin.hpp │ ├── nancumprod.hpp │ ├── nancumsum.hpp │ ├── nanmax.hpp │ ├── nanmean.hpp │ ├── nanmedian.hpp │ ├── nanmin.hpp │ ├── nanpercentile.hpp │ ├── nanprod.hpp │ ├── nans.hpp │ ├── nans_like.hpp │ ├── nanstdev.hpp │ ├── nansum.hpp │ ├── nanvar.hpp │ ├── nbytes.hpp │ ├── negative.hpp │ ├── newbyteorder.hpp │ ├── none.hpp │ ├── nonzero.hpp │ ├── norm.hpp │ ├── normalize.hpp │ ├── not_equal.hpp │ ├── nth_root.hpp │ ├── ones.hpp │ ├── ones_like.hpp │ ├── outer.hpp │ ├── packbits.hpp │ ├── pad.hpp │ ├── partition.hpp │ ├── percentile.hpp │ ├── place.hpp │ ├── polar.hpp │ ├── power.hpp │ ├── powerf.hpp │ ├── print.hpp │ ├── prod.hpp │ ├── proj.hpp │ ├── ptp.hpp │ ├── put.hpp │ ├── putmask.hpp │ ├── rad2deg.hpp │ ├── radians.hpp │ ├── ravel.hpp │ ├── real.hpp │ ├── reciprocal.hpp │ ├── remainder.hpp │ ├── repeat.hpp │ ├── replace.hpp │ ├── reshape.hpp │ ├── resizeFast.hpp │ ├── resizeSlow.hpp │ ├── right_shift.hpp │ ├── rint.hpp │ ├── rms.hpp │ ├── roll.hpp │ ├── rot90.hpp │ ├── round.hpp │ ├── row_stack.hpp │ ├── searchsorted.hpp │ ├── select.hpp │ ├── setdiff1d.hpp │ ├── shape.hpp │ ├── sign.hpp │ ├── signbit.hpp │ ├── sin.hpp │ ├── sinc.hpp │ ├── sinh.hpp │ ├── size.hpp │ ├── sort.hpp │ ├── split.hpp │ ├── sqrt.hpp │ ├── square.hpp │ ├── stack.hpp │ ├── stdev.hpp │ ├── subtract.hpp │ ├── sum.hpp │ ├── swap.hpp │ ├── swapCols.hpp │ ├── swapRows.hpp │ ├── swapaxes.hpp │ ├── take.hpp │ ├── tan.hpp │ ├── tanh.hpp │ ├── tile.hpp │ ├── toStlVector.hpp │ ├── tofile.hpp │ ├── trace.hpp │ ├── transpose.hpp │ ├── trapz.hpp │ ├── tri.hpp │ ├── trim_zeros.hpp │ ├── trunc.hpp │ ├── union1d.hpp │ ├── unique.hpp │ ├── unpackbits.hpp │ ├── unwrap.hpp │ ├── vander.hpp │ ├── var.hpp │ ├── vsplit.hpp │ ├── vstack.hpp │ ├── where.hpp │ ├── wrap.hpp │ ├── wrap2Pi.hpp │ ├── zeros.hpp │ └── zeros_like.hpp │ ├── ImageProcessing.hpp │ ├── ImageProcessing │ ├── Centroid.hpp │ ├── Cluster.hpp │ ├── ClusterMaker.hpp │ ├── Pixel.hpp │ ├── applyThreshold.hpp │ ├── centroidClusters.hpp │ ├── clusterPixels.hpp │ ├── generateCentroids.hpp │ ├── generateThreshold.hpp │ └── windowExceedances.hpp │ ├── Integrate.hpp │ ├── Integrate │ ├── gauss_legendre.hpp │ ├── romberg.hpp │ ├── simpson.hpp │ └── trapazoidal.hpp │ ├── Linalg.hpp │ ├── Linalg │ ├── cholesky.hpp │ ├── det.hpp │ ├── gaussNewtonNlls.hpp │ ├── hat.hpp │ ├── inv.hpp │ ├── lstsq.hpp │ ├── lu_decomposition.hpp │ ├── matrix_power.hpp │ ├── multi_dot.hpp │ ├── pinv.hpp │ ├── pivotLU_decomposition.hpp │ ├── solve.hpp │ ├── svd.hpp │ └── svd │ │ └── SVDClass.hpp │ ├── Logging.hpp │ ├── Logging │ ├── BinaryLogger.hpp │ └── Logger.hpp │ ├── NdArray.hpp │ ├── NdArray │ ├── NdArrayBroadcast.hpp │ ├── NdArrayCore.hpp │ ├── NdArrayIterators.hpp │ └── NdArrayOperators.hpp │ ├── Polynomial.hpp │ ├── Polynomial │ ├── Poly1d.hpp │ ├── chebyshev_t.hpp │ ├── chebyshev_u.hpp │ ├── hermite.hpp │ ├── laguerre.hpp │ ├── legendre_p.hpp │ ├── legendre_q.hpp │ └── spherical_harmonic.hpp │ ├── PythonInterface.hpp │ ├── PythonInterface │ ├── BoostInterface.hpp │ ├── BoostNumpyNdarrayHelper.hpp │ └── PybindInterface.hpp │ ├── Random.hpp │ ├── Random │ ├── RNG.hpp │ ├── bernoulli.hpp │ ├── beta.hpp │ ├── binomial.hpp │ ├── cauchy.hpp │ ├── chiSquare.hpp │ ├── choice.hpp │ ├── discrete.hpp │ ├── exponential.hpp │ ├── extremeValue.hpp │ ├── f.hpp │ ├── gamma.hpp │ ├── generator.hpp │ ├── geometric.hpp │ ├── laplace.hpp │ ├── lognormal.hpp │ ├── negativeBinomial.hpp │ ├── nonCentralChiSquared.hpp │ ├── normal.hpp │ ├── permutation.hpp │ ├── poisson.hpp │ ├── rand.hpp │ ├── randFloat.hpp │ ├── randInt.hpp │ ├── randN.hpp │ ├── shuffle.hpp │ ├── standardNormal.hpp │ ├── studentT.hpp │ ├── triangle.hpp │ ├── uniform.hpp │ ├── uniformOnSphere.hpp │ └── weibull.hpp │ ├── Roots.hpp │ ├── Roots │ ├── Bisection.hpp │ ├── Brent.hpp │ ├── Dekker.hpp │ ├── Iteration.hpp │ ├── Newton.hpp │ └── Secant.hpp │ ├── Rotations.hpp │ ├── Rotations │ ├── DCM.hpp │ ├── Quaternion.hpp │ ├── rodriguesRotation.hpp │ └── wahbasProblem.hpp │ ├── Special.hpp │ ├── Special │ ├── airy_ai.hpp │ ├── airy_ai_prime.hpp │ ├── airy_bi.hpp │ ├── airy_bi_prime.hpp │ ├── bernoulli.hpp │ ├── bessel_in.hpp │ ├── bessel_in_prime.hpp │ ├── bessel_jn.hpp │ ├── bessel_jn_prime.hpp │ ├── bessel_kn.hpp │ ├── bessel_kn_prime.hpp │ ├── bessel_yn.hpp │ ├── bessel_yn_prime.hpp │ ├── beta.hpp │ ├── cnr.hpp │ ├── comp_ellint_1.hpp │ ├── comp_ellint_2.hpp │ ├── comp_ellint_3.hpp │ ├── cyclic_hankel_1.hpp │ ├── cyclic_hankel_2.hpp │ ├── digamma.hpp │ ├── ellint_1.hpp │ ├── ellint_2.hpp │ ├── ellint_3.hpp │ ├── erf.hpp │ ├── erf_inv.hpp │ ├── erfc.hpp │ ├── erfc_inv.hpp │ ├── expint.hpp │ ├── factorial.hpp │ ├── gamma.hpp │ ├── gamma1pm1.hpp │ ├── log_gamma.hpp │ ├── pnr.hpp │ ├── polygamma.hpp │ ├── prime.hpp │ ├── riemann_zeta.hpp │ ├── softmax.hpp │ ├── spherical_bessel_jn.hpp │ ├── spherical_bessel_yn.hpp │ ├── spherical_hankel_1.hpp │ ├── spherical_hankel_2.hpp │ └── trigamma.hpp │ ├── Utils.hpp │ ├── Utils │ ├── cube.hpp │ ├── essentiallyEqual.hpp │ ├── essentiallyEqualComplex.hpp │ ├── gaussian.hpp │ ├── gaussian1d.hpp │ ├── interp.hpp │ ├── num2str.hpp │ ├── power.hpp │ ├── powerf.hpp │ ├── sqr.hpp │ ├── timeit.hpp │ └── value2str.hpp │ ├── Vector.hpp │ └── Vector │ ├── Vec2.hpp │ └── Vec3.hpp ├── static_analysis ├── clang-format-all.sh ├── clang-tidy-all.sh └── cppcheck-all.sh ├── suppressions.txt └── test ├── CMakeLists.txt ├── cppcheck ├── CMakeLists.txt └── CppCheck.cpp ├── gtest ├── CMakeLists.txt ├── test_BinaryLogger.cpp └── test_Logger.cpp ├── multiple ├── CMakeLists.txt ├── function.cpp ├── function.h └── main.cpp └── pytest ├── CMakeLists.txt ├── environment.yml ├── src ├── BindingsIncludes.hpp ├── CMakeLists.txt ├── Constants.cpp ├── Coordinates.cpp ├── Core.cpp ├── DataCube.cpp ├── DateTime.cpp ├── Filter.cpp ├── Functions.cpp ├── ImageProcessing.cpp ├── Integrate.cpp ├── Linalg.cpp ├── Logger.cpp ├── NdArray.cpp ├── NumCppPy.cpp ├── Polynomial.cpp ├── Random.cpp ├── Roots.cpp ├── Rotations.cpp ├── Special.cpp ├── Utils.cpp ├── Vector.cpp └── pybind11 │ └── pybind11 │ ├── attr.h │ ├── buffer_info.h │ ├── cast.h │ ├── chrono.h │ ├── common.h │ ├── complex.h │ ├── conduit │ ├── README.txt │ ├── pybind11_conduit_v1.h │ ├── pybind11_platform_abi_id.h │ └── wrap_include_python_h.h │ ├── detail │ ├── class.h │ ├── common.h │ ├── cpp_conduit.h │ ├── descr.h │ ├── exception_translation.h │ ├── init.h │ ├── internals.h │ ├── type_caster_base.h │ ├── typeid.h │ └── value_and_holder.h │ ├── eigen.h │ ├── eigen │ ├── common.h │ ├── matrix.h │ └── tensor.h │ ├── embed.h │ ├── eval.h │ ├── functional.h │ ├── gil.h │ ├── gil_safe_call_once.h │ ├── iostream.h │ ├── numpy.h │ ├── operators.h │ ├── options.h │ ├── pybind11.h │ ├── pytypes.h │ ├── stl.h │ ├── stl │ └── filesystem.h │ ├── stl_bind.h │ ├── type_caster_pyobject_ptr.h │ ├── typing.h │ └── warnings.h ├── test_constants.py ├── test_coordinates.py ├── test_datacube.py ├── test_datetime.py ├── test_dtypeinfo.py ├── test_filters.py ├── test_functions.py ├── test_imageprocessing.py ├── test_integrate.py ├── test_linalg.py ├── test_logger.py ├── test_ndarray_core.py ├── test_ndarray_iterators.py ├── test_ndarray_operators.py ├── test_polynomial.py ├── test_random.py ├── test_roots.py ├── test_rotations.py ├── test_shape.py ├── test_slice.py ├── test_special.py ├── test_timer.py ├── test_utils.py └── test_vector.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .vs/ 3 | .vscode/ 4 | .VSCodeCounter/ 5 | .idea/ 6 | .pytest_cache/ 7 | __pycache__/ 8 | .settings/ 9 | .project/ 10 | *.prefs 11 | *.tmp 12 | *.filters 13 | *.user 14 | *.directory 15 | *build/ 16 | *buildVS/ 17 | *bin/ 18 | *lib/ 19 | *.exp 20 | *.lib 21 | *.pyd 22 | *.so 23 | 24 | *.tar 25 | Testing/ 26 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-hacker -------------------------------------------------------------------------------- /develop/NdArray/Types.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #include "NumCpp/Core/Types.hpp" 6 | 7 | namespace nc_develop 8 | { 9 | using shape_t = std::vector; 10 | using strides_t = std::vector; 11 | } // namespace nc_develop 12 | -------------------------------------------------------------------------------- /develop/ToDo.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | ## Version 2.15.0 4 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | ECHO is on. 2 | -------------------------------------------------------------------------------- /docs/doxygen/html/NumCppLogoDoxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/NumCppLogoDoxygen.png -------------------------------------------------------------------------------- /docs/doxygen/html/_a_e_r_8hpp.js: -------------------------------------------------------------------------------- 1 | var _a_e_r_8hpp = 2 | [ 3 | [ "nc::coordinates::reference_frames::AER", "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html", "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r" ], 4 | [ "operator<<", "_a_e_r_8hpp.html#ad9877edb543e32dd160ccfb97def6fa2", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp.js: -------------------------------------------------------------------------------- 1 | var _a_e_rto_e_c_e_f_8hpp = 2 | [ 3 | [ "AERtoECEF", "_a_e_rto_e_c_e_f_8hpp.html#a7de2297f2258ce69a62b9f3a4ef35d2f", null ], 4 | [ "AERtoECEF", "_a_e_rto_e_c_e_f_8hpp.html#abe86bc969b1d9981673e3bc7b8249b6c", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_a_e_rto_e_n_u_8hpp.js: -------------------------------------------------------------------------------- 1 | var _a_e_rto_e_n_u_8hpp = 2 | [ 3 | [ "AERtoENU", "_a_e_rto_e_n_u_8hpp.html#afb8e3251eb284f307ba13479070b8bc1", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_a_e_rto_l_l_a_8hpp.js: -------------------------------------------------------------------------------- 1 | var _a_e_rto_l_l_a_8hpp = 2 | [ 3 | [ "AERtoLLA", "_a_e_rto_l_l_a_8hpp.html#a8c61c8afd6cb34249504b8d373707a26", null ], 4 | [ "AERtoLLA", "_a_e_rto_l_l_a_8hpp.html#a74197fa26e833207006e941a657347fe", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_a_e_rto_n_e_d_8hpp.js: -------------------------------------------------------------------------------- 1 | var _a_e_rto_n_e_d_8hpp = 2 | [ 3 | [ "AERtoNED", "_a_e_rto_n_e_d_8hpp.html#af0b0b2831fbf5b51dee72d5d55ddd84c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_bisection_8hpp.js: -------------------------------------------------------------------------------- 1 | var _bisection_8hpp = 2 | [ 3 | [ "nc::roots::Bisection", "classnc_1_1roots_1_1_bisection.html", "classnc_1_1roots_1_1_bisection" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_brent_8hpp.js: -------------------------------------------------------------------------------- 1 | var _brent_8hpp = 2 | [ 3 | [ "nc::roots::Brent", "classnc_1_1roots_1_1_brent.html", "classnc_1_1roots_1_1_brent" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_centroid_8hpp.js: -------------------------------------------------------------------------------- 1 | var _centroid_8hpp = 2 | [ 3 | [ "nc::imageProcessing::Centroid< dtype >", "classnc_1_1image_processing_1_1_centroid.html", "classnc_1_1image_processing_1_1_centroid" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_clock_8hpp.js: -------------------------------------------------------------------------------- 1 | var _clock_8hpp = 2 | [ 3 | [ "Clock", "_clock_8hpp.html#a67bc751d59db09332681566f83c44e0b", null ], 4 | [ "Duration", "_clock_8hpp.html#a5c94080d379f3055158ba6198a036446", null ], 5 | [ "TimePoint", "_clock_8hpp.html#abf800624d265aabbc5bc48ff63c91562", null ], 6 | [ "operator<<", "_clock_8hpp.html#a617e0b958398b17e3ddbe82c303b6bdc", null ], 7 | [ "operator<<", "_clock_8hpp.html#a7c4b9b8d4ef61464e8ab35ad09b399c9", null ] 8 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_cluster_8hpp.js: -------------------------------------------------------------------------------- 1 | var _cluster_8hpp = 2 | [ 3 | [ "nc::imageProcessing::Cluster< dtype >", "classnc_1_1image_processing_1_1_cluster.html", "classnc_1_1image_processing_1_1_cluster" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_cluster_maker_8hpp.js: -------------------------------------------------------------------------------- 1 | var _cluster_maker_8hpp = 2 | [ 3 | [ "nc::imageProcessing::ClusterMaker< dtype >", "classnc_1_1image_processing_1_1_cluster_maker.html", "classnc_1_1image_processing_1_1_cluster_maker" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp.js: -------------------------------------------------------------------------------- 1 | var _coordinates_2_reference_frames_2_constants_8hpp = 2 | [ 3 | [ "EARTH_EQUATORIAL_RADIUS", "_coordinates_2_reference_frames_2_constants_8hpp.html#ace19ddeea3737fe42ad60256f310feaa", null ], 4 | [ "EARTH_POLAR_RADIUS", "_coordinates_2_reference_frames_2_constants_8hpp.html#ac759daa1c17c9d6cc404787d56b115ac", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_core_2_shape_8hpp.js: -------------------------------------------------------------------------------- 1 | var _core_2_shape_8hpp = 2 | [ 3 | [ "nc::Shape", "classnc_1_1_shape.html", "classnc_1_1_shape" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_core_2shape_8hpp.js: -------------------------------------------------------------------------------- 1 | var _core_2shape_8hpp = 2 | [ 3 | [ "nc::Shape", "classnc_1_1_shape.html", "classnc_1_1_shape" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_d_c_m_8hpp.js: -------------------------------------------------------------------------------- 1 | var _d_c_m_8hpp = 2 | [ 3 | [ "nc::rotations::DCM", "classnc_1_1rotations_1_1_d_c_m.html", "classnc_1_1rotations_1_1_d_c_m" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_data_cube_8hpp.js: -------------------------------------------------------------------------------- 1 | var _data_cube_8hpp = 2 | [ 3 | [ "nc::DataCube< dtype >", "classnc_1_1_data_cube.html", "classnc_1_1_data_cube" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_dec_8hpp.js: -------------------------------------------------------------------------------- 1 | var _dec_8hpp = 2 | [ 3 | [ "Dec", "classnc_1_1coordinates_1_1_dec.html", "classnc_1_1coordinates_1_1_dec" ], 4 | [ "Sign", "_dec_8hpp.html#a07a05f0462e5f74f05cbd04664c4ca94", [ 5 | [ "NEGATIVE", "_dec_8hpp.html#a07a05f0462e5f74f05cbd04664c4ca94a50546bf973283065b6ccf09faf7a580a", null ], 6 | [ "POSITIVE", "_dec_8hpp.html#a07a05f0462e5f74f05cbd04664c4ca94aab6c31432785221bae58327ef5f6ea58", null ] 7 | ] ] 8 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_dekker_8hpp.js: -------------------------------------------------------------------------------- 1 | var _dekker_8hpp = 2 | [ 3 | [ "nc::roots::Dekker", "classnc_1_1roots_1_1_dekker.html", "classnc_1_1roots_1_1_dekker" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_dtype_info_8hpp.js: -------------------------------------------------------------------------------- 1 | var _dtype_info_8hpp = 2 | [ 3 | [ "nc::DtypeInfo< dtype >", "classnc_1_1_dtype_info.html", "classnc_1_1_dtype_info" ], 4 | [ "nc::DtypeInfo< std::complex< dtype > >", "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html", "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4" ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_c_e_f_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_c_e_f_8hpp = 2 | [ 3 | [ "nc::coordinates::reference_frames::ECEF", "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html", "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp = 2 | [ 3 | [ "ECEFEulerToENURollPitchYaw", "_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.html#abff5ec5e13a36310430e0e5a70a0cc2b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp = 2 | [ 3 | [ "ECEFEulerToNEDRollPitchYaw", "_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.html#a45a25b63fe3cae3190b8894c1ecf7063", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_c_e_fto_a_e_r_8hpp = 2 | [ 3 | [ "ECEFtoAER", "_e_c_e_fto_a_e_r_8hpp.html#a827065e1e4f8b5d362da323a17cd0083", null ], 4 | [ "ECEFtoAER", "_e_c_e_fto_a_e_r_8hpp.html#a9b6ffa95a3e2f68d6c4560560e2c22b5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_c_e_fto_e_n_u_8hpp = 2 | [ 3 | [ "ECEFtoENU", "_e_c_e_fto_e_n_u_8hpp.html#a1719d5ddd842918900524766697a04e6", null ], 4 | [ "ECEFtoENU", "_e_c_e_fto_e_n_u_8hpp.html#a744e8ff251872f0c7b49687420309c92", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_c_e_fto_l_l_a_8hpp = 2 | [ 3 | [ "ECEFtoLLA", "_e_c_e_fto_l_l_a_8hpp.html#ae5b0b317df7fc82c1a6467aa14ac37d4", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_c_e_fto_n_e_d_8hpp = 2 | [ 3 | [ "ECEFtoNED", "_e_c_e_fto_n_e_d_8hpp.html#aa7ce07784d9289636de4cf2566913c85", null ], 4 | [ "ECEFtoNED", "_e_c_e_fto_n_e_d_8hpp.html#ab1c0d50edf3b062d9ff459a7688c864d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_n_u_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_n_u_8hpp = 2 | [ 3 | [ "nc::coordinates::reference_frames::ENU", "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html", "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u" ], 4 | [ "operator<<", "_e_n_u_8hpp.html#afbf5f88ce19b1d1fc547d7e1035e5904", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp = 2 | [ 3 | [ "ENURollPitchYawToECEFEuler", "_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html#ae1054b00ea5f197ce81ee256a749a8ad", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_n_u_unit_vecs_in_e_c_e_f_8hpp = 2 | [ 3 | [ "ENUUnitVecsInECEF", "_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html#ac406cc673797cf81dab387ef5d802931", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_n_uto_a_e_r_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_n_uto_a_e_r_8hpp = 2 | [ 3 | [ "ENUtoAER", "_e_n_uto_a_e_r_8hpp.html#a257ae22ee98cca9d16df59ff8b17cb54", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_n_uto_e_c_e_f_8hpp = 2 | [ 3 | [ "ENUtoECEF", "_e_n_uto_e_c_e_f_8hpp.html#aad4854fa54a5452ea763d632bfe3ebf0", null ], 4 | [ "ENUtoECEF", "_e_n_uto_e_c_e_f_8hpp.html#a856dc06d3e1ebd1482d59f299574b0b0", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_n_uto_l_l_a_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_n_uto_l_l_a_8hpp = 2 | [ 3 | [ "ENUtoLLA", "_e_n_uto_l_l_a_8hpp.html#a3fc106e20ec851e48602ff7a002a04cc", null ], 4 | [ "ENUtoLLA", "_e_n_uto_l_l_a_8hpp.html#a2a9677cf3a4e80da17cf254e5df063ca", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_e_n_uto_n_e_d_8hpp.js: -------------------------------------------------------------------------------- 1 | var _e_n_uto_n_e_d_8hpp = 2 | [ 3 | [ "ENUtoNED", "_e_n_uto_n_e_d_8hpp.html#aa60ec3d43951a07db58ff93de763fdac", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_endian_8hpp.js: -------------------------------------------------------------------------------- 1 | var _endian_8hpp = 2 | [ 3 | [ "byteSwap", "_endian_8hpp.html#a28d96487f9ac66755e2dd4925a459e0d", null ], 4 | [ "isLittleEndian", "_endian_8hpp.html#a11907ef8078650aee8fe900854ba5bb4", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_error_8hpp.js: -------------------------------------------------------------------------------- 1 | var _error_8hpp = 2 | [ 3 | [ "THROW_INVALID_ARGUMENT_ERROR", "_error_8hpp.html#af2aff1172060367b9c5398fa097fa8fd", null ], 4 | [ "THROW_RUNTIME_ERROR", "_error_8hpp.html#a0f0ce4acf1fd6032112a06ebc50bb05a", null ], 5 | [ "throwError", "_error_8hpp.html#ae23be92f797ad9d90604456bdf27092f", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_euler_8hpp.js: -------------------------------------------------------------------------------- 1 | var _euler_8hpp = 2 | [ 3 | [ "nc::coordinates::Euler", "classnc_1_1coordinates_1_1_euler.html", "classnc_1_1coordinates_1_1_euler" ], 4 | [ "operator<<", "_euler_8hpp.html#afde33ec04e407698b8d0826140b6619a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp.js: -------------------------------------------------------------------------------- 1 | var _filter_2_filters_2_filters2d_2laplace_8hpp = 2 | [ 3 | [ "laplace", "_filter_2_filters_2_filters2d_2laplace_8hpp.html#a03fcb2476bd35393869fb23167566f10", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_functions_2_shape_8hpp.js: -------------------------------------------------------------------------------- 1 | var _functions_2_shape_8hpp = 2 | [ 3 | [ "shape", "_functions_2_shape_8hpp.html#ae2b224742bc8263190d451a44ebe5e34", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_functions_2cube_8hpp.js: -------------------------------------------------------------------------------- 1 | var _functions_2cube_8hpp = 2 | [ 3 | [ "cube", "_functions_2cube_8hpp.html#a0ac924c98df46360a64fcc156ffe2d98", null ], 4 | [ "cube", "_functions_2cube_8hpp.html#a5899ccef8410243438debea3d8296df6", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_functions_2interp_8hpp.js: -------------------------------------------------------------------------------- 1 | var _functions_2interp_8hpp = 2 | [ 3 | [ "interp", "_functions_2interp_8hpp.html#acb0128da9c31422e62814a91d2075d9d", null ], 4 | [ "interp", "_functions_2interp_8hpp.html#a5b9584eeac344f9d37beb6be475300ca", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_functions_2power_8hpp.js: -------------------------------------------------------------------------------- 1 | var _functions_2power_8hpp = 2 | [ 3 | [ "power", "_functions_2power_8hpp.html#accb66c153866ca430e3f2ce0386f92eb", null ], 4 | [ "power", "_functions_2power_8hpp.html#affc3af7f5f6f2daca46e7730df7cf3ee", null ], 5 | [ "power", "_functions_2power_8hpp.html#a1f059635ecfc805979db6973dfa29008", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_functions_2powerf_8hpp.js: -------------------------------------------------------------------------------- 1 | var _functions_2powerf_8hpp = 2 | [ 3 | [ "powerf", "_functions_2powerf_8hpp.html#a1284308e19d619e53362f5784256c99f", null ], 4 | [ "powerf", "_functions_2powerf_8hpp.html#afa339e99c7bf037352cf0f2a0751f7fd", null ], 5 | [ "powerf", "_functions_2powerf_8hpp.html#acc759e42feb1633b521ed7138cf4bfe3", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_functions_2shape_8hpp.js: -------------------------------------------------------------------------------- 1 | var _functions_2shape_8hpp = 2 | [ 3 | [ "shape", "_functions_2shape_8hpp.html#ae2b224742bc8263190d451a44ebe5e34", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_geocentric_8hpp.js: -------------------------------------------------------------------------------- 1 | var _geocentric_8hpp = 2 | [ 3 | [ "nc::coordinates::reference_frames::Geocentric", "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html", "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric" ], 4 | [ "operator<<", "_geocentric_8hpp.html#a4c2e4bb1472f4186fe0710f8c57beebd", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_iteration_8hpp.js: -------------------------------------------------------------------------------- 1 | var _iteration_8hpp = 2 | [ 3 | [ "nc::roots::Iteration", "classnc_1_1roots_1_1_iteration.html", "classnc_1_1roots_1_1_iteration" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_l_l_a_8hpp.js: -------------------------------------------------------------------------------- 1 | var _l_l_a_8hpp = 2 | [ 3 | [ "nc::coordinates::reference_frames::LLA", "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html", "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a" ], 4 | [ "operator<<", "_l_l_a_8hpp.html#a9ef6529b139067ee2b3d127e5dc1c72e", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_l_l_ato_a_e_r_8hpp.js: -------------------------------------------------------------------------------- 1 | var _l_l_ato_a_e_r_8hpp = 2 | [ 3 | [ "LLAtoAER", "_l_l_ato_a_e_r_8hpp.html#a2417d189ebd29bd97d04ec85593cbc9a", null ], 4 | [ "LLAtoAER", "_l_l_ato_a_e_r_8hpp.html#a867f4c21fe56499e38b7217eba8caf85", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp.js: -------------------------------------------------------------------------------- 1 | var _l_l_ato_e_c_e_f_8hpp = 2 | [ 3 | [ "LLAtoECEF", "_l_l_ato_e_c_e_f_8hpp.html#a4534f88d7138f27edf20f951aac05970", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_l_l_ato_e_n_u_8hpp.js: -------------------------------------------------------------------------------- 1 | var _l_l_ato_e_n_u_8hpp = 2 | [ 3 | [ "LLAtoENU", "_l_l_ato_e_n_u_8hpp.html#a404d07a49fdffc55d2410b8d3a332a25", null ], 4 | [ "LLAtoENU", "_l_l_ato_e_n_u_8hpp.html#aac1bcca3fce0215d67f3a4438424d8c7", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_l_l_ato_geocentric_8hpp.js: -------------------------------------------------------------------------------- 1 | var _l_l_ato_geocentric_8hpp = 2 | [ 3 | [ "LLAtoGeocentric", "_l_l_ato_geocentric_8hpp.html#ab018d57e2605ae4cfe9378b9f47ec70c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_l_l_ato_n_e_d_8hpp.js: -------------------------------------------------------------------------------- 1 | var _l_l_ato_n_e_d_8hpp = 2 | [ 3 | [ "LLAtoNED", "_l_l_ato_n_e_d_8hpp.html#a7acecbc1257ad0960f90b0ab7754e287", null ], 4 | [ "LLAtoNED", "_l_l_ato_n_e_d_8hpp.html#a33dd1e62142d1d57ceb2442bd95c68ed", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_n_e_d_8hpp.js: -------------------------------------------------------------------------------- 1 | var _n_e_d_8hpp = 2 | [ 3 | [ "nc::coordinates::reference_frames::NED", "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html", "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.js: -------------------------------------------------------------------------------- 1 | var _n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp = 2 | [ 3 | [ "NEDRollPitchYawToECEFEuler", "_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html#ab679db34322c0ba96d93e25eb6f16567", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp.js: -------------------------------------------------------------------------------- 1 | var _n_e_d_unit_vecs_in_e_c_e_f_8hpp = 2 | [ 3 | [ "NEDUnitVecsInECEF", "_n_e_d_unit_vecs_in_e_c_e_f_8hpp.html#af43ca6c1f96cf4d95024b7d4eb135605", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_n_e_dto_a_e_r_8hpp.js: -------------------------------------------------------------------------------- 1 | var _n_e_dto_a_e_r_8hpp = 2 | [ 3 | [ "NEDtoAER", "_n_e_dto_a_e_r_8hpp.html#ae71eb054a608e449ea7d5cb5ed1f253e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp.js: -------------------------------------------------------------------------------- 1 | var _n_e_dto_e_c_e_f_8hpp = 2 | [ 3 | [ "NEDtoECEF", "_n_e_dto_e_c_e_f_8hpp.html#aaa82e98af20c8f12d75a48c82be75d70", null ], 4 | [ "NEDtoECEF", "_n_e_dto_e_c_e_f_8hpp.html#a07e94a5c87e8f3023cbafd26ea6aa80f", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_n_e_dto_e_n_u_8hpp.js: -------------------------------------------------------------------------------- 1 | var _n_e_dto_e_n_u_8hpp = 2 | [ 3 | [ "NEDtoENU", "_n_e_dto_e_n_u_8hpp.html#a87f2d679fc321b6e3711ae527ca07d31", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_n_e_dto_l_l_a_8hpp.js: -------------------------------------------------------------------------------- 1 | var _n_e_dto_l_l_a_8hpp = 2 | [ 3 | [ "NEDtoLLA", "_n_e_dto_l_l_a_8hpp.html#a487949c250ac8773a1f9fb65330e952b", null ], 4 | [ "NEDtoLLA", "_n_e_dto_l_l_a_8hpp.html#adf5b05b33084ac43bb44acfbc892af39", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_nd_array_broadcast_8hpp.js: -------------------------------------------------------------------------------- 1 | var _nd_array_broadcast_8hpp = 2 | [ 3 | [ "broadcaster", "_nd_array_broadcast_8hpp.html#add9a4b7093978b3c951d12c702edf898", null ], 4 | [ "broadcaster", "_nd_array_broadcast_8hpp.html#a945483bb9b8f03ba097d62d517b67a87", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_newton_8hpp.js: -------------------------------------------------------------------------------- 1 | var _newton_8hpp = 2 | [ 3 | [ "nc::roots::Newton", "classnc_1_1roots_1_1_newton.html", "classnc_1_1roots_1_1_newton" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_orientation_8hpp.js: -------------------------------------------------------------------------------- 1 | var _orientation_8hpp = 2 | [ 3 | [ "nc::coordinates::Orientation", "classnc_1_1coordinates_1_1_orientation.html", "classnc_1_1coordinates_1_1_orientation" ], 4 | [ "operator<<", "_orientation_8hpp.html#aac3cf1b13ed9f25d54791b411fba3033", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_pixel_8hpp.js: -------------------------------------------------------------------------------- 1 | var _pixel_8hpp = 2 | [ 3 | [ "nc::imageProcessing::Pixel< dtype >", "classnc_1_1image_processing_1_1_pixel.html", "classnc_1_1image_processing_1_1_pixel" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_poly1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var _poly1d_8hpp = 2 | [ 3 | [ "nc::polynomial::Poly1d< dtype >", "classnc_1_1polynomial_1_1_poly1d.html", "classnc_1_1polynomial_1_1_poly1d" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_quaternion_8hpp.js: -------------------------------------------------------------------------------- 1 | var _quaternion_8hpp = 2 | [ 3 | [ "nc::rotations::Quaternion", "classnc_1_1rotations_1_1_quaternion.html", "classnc_1_1rotations_1_1_quaternion" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_r_n_g_8hpp.js: -------------------------------------------------------------------------------- 1 | var _r_n_g_8hpp = 2 | [ 3 | [ "nc::random::RNG< GeneratorType >", "classnc_1_1random_1_1_r_n_g.html", "classnc_1_1random_1_1_r_n_g" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_random_2bernoulli_8hpp.js: -------------------------------------------------------------------------------- 1 | var _random_2bernoulli_8hpp = 2 | [ 3 | [ "bernoulli", "_random_2bernoulli_8hpp.html#aa8abcb15fe2a846055f419f768c39e5d", null ], 4 | [ "bernoulli", "_random_2bernoulli_8hpp.html#a1a5af4283601fd8663dcdc34599aede3", null ], 5 | [ "bernoulli", "_random_2bernoulli_8hpp.html#ad07d7a1d3991eba1ac8c07d1cb3e92b8", null ], 6 | [ "bernoulli", "_random_2bernoulli_8hpp.html#a465d60c18c93c566a8296edc21c7ec9b", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_random_2beta_8hpp.js: -------------------------------------------------------------------------------- 1 | var _random_2beta_8hpp = 2 | [ 3 | [ "beta", "_random_2beta_8hpp.html#a19cb72b59f062a0697c564e2aa0e6ee8", null ], 4 | [ "beta", "_random_2beta_8hpp.html#a9cf5ddddc350278c76e077c67b5254ab", null ], 5 | [ "beta", "_random_2beta_8hpp.html#a3a5857186b022e861de42b35e9d996a3", null ], 6 | [ "beta", "_random_2beta_8hpp.html#a0c948fa9b84156bdbf0e0b7b0990ceb9", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_random_2gamma_8hpp.js: -------------------------------------------------------------------------------- 1 | var _random_2gamma_8hpp = 2 | [ 3 | [ "gamma", "_random_2gamma_8hpp.html#a600bec3a6a234100f6c597d510f798b2", null ], 4 | [ "gamma", "_random_2gamma_8hpp.html#a0a969335423de5ad59fed5e952189e2d", null ], 5 | [ "gamma", "_random_2gamma_8hpp.html#a75da8d4e330771cf2e73fb04abd3945b", null ], 6 | [ "gamma", "_random_2gamma_8hpp.html#acafe7aa5662b948cf4a8709f30c631f8", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_random_2laplace_8hpp.js: -------------------------------------------------------------------------------- 1 | var _random_2laplace_8hpp = 2 | [ 3 | [ "laplace", "_random_2laplace_8hpp.html#a036596445e7750eca42107e1326e3179", null ], 4 | [ "laplace", "_random_2laplace_8hpp.html#a76e5b2a6feb9bf6a05c5dd9402f9c62f", null ], 5 | [ "laplace", "_random_2laplace_8hpp.html#aa164dc81c9c5d2979cdd15dca77b5f99", null ], 6 | [ "laplace", "_random_2laplace_8hpp.html#a8a89c0636f8f79583ea5b752b2af6276", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_s_v_d_class_8hpp.js: -------------------------------------------------------------------------------- 1 | var _s_v_d_class_8hpp = 2 | [ 3 | [ "nc::linalg::SVD", "classnc_1_1linalg_1_1_s_v_d.html", "classnc_1_1linalg_1_1_s_v_d" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_secant_8hpp.js: -------------------------------------------------------------------------------- 1 | var _secant_8hpp = 2 | [ 3 | [ "nc::roots::Secant", "classnc_1_1roots_1_1_secant.html", "classnc_1_1roots_1_1_secant" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_slice_8hpp.js: -------------------------------------------------------------------------------- 1 | var _slice_8hpp = 2 | [ 3 | [ "nc::Slice", "classnc_1_1_slice.html", "classnc_1_1_slice" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_special_2bernoulli_8hpp.js: -------------------------------------------------------------------------------- 1 | var _special_2bernoulli_8hpp = 2 | [ 3 | [ "bernoilli", "_special_2bernoulli_8hpp.html#a355d9cc6c775ba27880a9167e191399b", null ], 4 | [ "bernoilli", "_special_2bernoulli_8hpp.html#a1af26e52a24fca2b572605ec4b2c1f1b", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_special_2beta_8hpp.js: -------------------------------------------------------------------------------- 1 | var _special_2beta_8hpp = 2 | [ 3 | [ "beta", "_special_2beta_8hpp.html#ad2ac5c7add77e243dc39899c15ad93e6", null ], 4 | [ "beta", "_special_2beta_8hpp.html#a9b74f451f99338c909b7f73df6e5bff6", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_special_2gamma_8hpp.js: -------------------------------------------------------------------------------- 1 | var _special_2gamma_8hpp = 2 | [ 3 | [ "gamma", "_special_2gamma_8hpp.html#a07a3d6d5e0610dca66ca975cdf1d34b9", null ], 4 | [ "gamma", "_special_2gamma_8hpp.html#aad22d353f040026576c4a28727ecaf35", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_timer_8hpp.js: -------------------------------------------------------------------------------- 1 | var _timer_8hpp = 2 | [ 3 | [ "nc::Timer< TimeUnit >", "classnc_1_1_timer.html", "classnc_1_1_timer" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_utils_2cube_8hpp.js: -------------------------------------------------------------------------------- 1 | var _utils_2cube_8hpp = 2 | [ 3 | [ "cube", "_utils_2cube_8hpp.html#a46e88717d4d32003bb449fd5cefd401c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_utils_2interp_8hpp.js: -------------------------------------------------------------------------------- 1 | var _utils_2interp_8hpp = 2 | [ 3 | [ "interp", "_utils_2interp_8hpp.html#a691a52cfcc401340af355bd53869600e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_utils_2power_8hpp.js: -------------------------------------------------------------------------------- 1 | var _utils_2power_8hpp = 2 | [ 3 | [ "power", "_utils_2power_8hpp.html#a716a63ef8627c73f6cc4146481fcabdf", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_utils_2powerf_8hpp.js: -------------------------------------------------------------------------------- 1 | var _utils_2powerf_8hpp = 2 | [ 3 | [ "powerf", "_utils_2powerf_8hpp.html#ac113b30b96f9c707c0cbe2eecbabe85f", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/_version_8hpp.js: -------------------------------------------------------------------------------- 1 | var _version_8hpp = 2 | [ 3 | [ "VERSION", "_version_8hpp.html#a8fa2b5de82ba40f346d1ba1e3ad0397a", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/abs_8hpp.js: -------------------------------------------------------------------------------- 1 | var abs_8hpp = 2 | [ 3 | [ "abs", "abs_8hpp.html#ad701f25dc97cf57005869ccb83357689", null ], 4 | [ "abs", "abs_8hpp.html#a6c2c40c4efcd5018f84f9aca0c03c29d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/add_boundary1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var add_boundary1d_8hpp = 2 | [ 3 | [ "addBoundary1d", "add_boundary1d_8hpp.html#a7c54ba5e8b799fbc33d7462a96591a26", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/add_boundary2d_8hpp.js: -------------------------------------------------------------------------------- 1 | var add_boundary2d_8hpp = 2 | [ 3 | [ "addBoundary2d", "add_boundary2d_8hpp.html#ab9bb44eec90f0b5985cc7a0e1548b36d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/airy__ai_8hpp.js: -------------------------------------------------------------------------------- 1 | var airy__ai_8hpp = 2 | [ 3 | [ "airy_ai", "airy__ai_8hpp.html#a90c6b73247014e03767ad66cefccc4d6", null ], 4 | [ "airy_ai", "airy__ai_8hpp.html#ae5fa8cc4efa56e60d061600b3f6903b2", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/airy__ai__prime_8hpp.js: -------------------------------------------------------------------------------- 1 | var airy__ai__prime_8hpp = 2 | [ 3 | [ "airy_ai_prime", "airy__ai__prime_8hpp.html#abd997d345e8fdf5440c0c16548113d4c", null ], 4 | [ "airy_ai_prime", "airy__ai__prime_8hpp.html#a10516c44f9bd0fb906dd12122401187a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/airy__bi_8hpp.js: -------------------------------------------------------------------------------- 1 | var airy__bi_8hpp = 2 | [ 3 | [ "airy_bi", "airy__bi_8hpp.html#a9ea0f9f510fa0c67639ebf17690271d3", null ], 4 | [ "airy_bi", "airy__bi_8hpp.html#a6e23c4a5cc7f4a44b384b0c2a9f3c56f", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/airy__bi__prime_8hpp.js: -------------------------------------------------------------------------------- 1 | var airy__bi__prime_8hpp = 2 | [ 3 | [ "airy_bi_prime", "airy__bi__prime_8hpp.html#a9646b2d48062cebaeb627ab0ed8c68c6", null ], 4 | [ "airy_bi_prime", "airy__bi__prime_8hpp.html#ab85b0e2d663c5ff84f92e321b9146ae1", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/alen_8hpp.js: -------------------------------------------------------------------------------- 1 | var alen_8hpp = 2 | [ 3 | [ "alen", "alen_8hpp.html#a3c13463ad0ab59dcbd9d8efc99b83ca8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/all_8hpp.js: -------------------------------------------------------------------------------- 1 | var all_8hpp = 2 | [ 3 | [ "all", "all_8hpp.html#aab02ff9e6ad434e1cc531c367fab11ac", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/allclose_8hpp.js: -------------------------------------------------------------------------------- 1 | var allclose_8hpp = 2 | [ 3 | [ "allclose", "allclose_8hpp.html#ac2a107bb7ecfcf649c408069166ed1ea", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/amax_8hpp.js: -------------------------------------------------------------------------------- 1 | var amax_8hpp = 2 | [ 3 | [ "amax", "amax_8hpp.html#a74f4142ec986b00b8d1bc4722499ac04", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/amin_8hpp.js: -------------------------------------------------------------------------------- 1 | var amin_8hpp = 2 | [ 3 | [ "amin", "amin_8hpp.html#ac8b9e6bc83f8c55a3ae8bebb3dd00424", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/angle_8hpp.js: -------------------------------------------------------------------------------- 1 | var angle_8hpp = 2 | [ 3 | [ "angle", "angle_8hpp.html#a9809dea689bbec475de6d407a8c18bd2", null ], 4 | [ "angle", "angle_8hpp.html#a600c02680b7f5963cc305a4b5450f6f6", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/any_8hpp.js: -------------------------------------------------------------------------------- 1 | var any_8hpp = 2 | [ 3 | [ "any", "any_8hpp.html#a63fb1fcbd704d05af86df3ea355b82cc", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/append_8hpp.js: -------------------------------------------------------------------------------- 1 | var append_8hpp = 2 | [ 3 | [ "append", "append_8hpp.html#aadf90a1e77b251c318146a945c75e908", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/apply_function_8hpp.js: -------------------------------------------------------------------------------- 1 | var apply_function_8hpp = 2 | [ 3 | [ "applyFunction", "apply_function_8hpp.html#a9514d926dd13e0c80ae8b4f263752725", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/apply_poly1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var apply_poly1d_8hpp = 2 | [ 3 | [ "applyPoly1d", "apply_poly1d_8hpp.html#a52f3be5bbad0243643027a1477662356", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/apply_threshold_8hpp.js: -------------------------------------------------------------------------------- 1 | var apply_threshold_8hpp = 2 | [ 3 | [ "applyThreshold", "apply_threshold_8hpp.html#aea250e60088f0e2cfd9f4dc3b9ec34ff", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arange_8hpp.js: -------------------------------------------------------------------------------- 1 | var arange_8hpp = 2 | [ 3 | [ "arange", "arange_8hpp.html#a2e9892f02e430f84f563d3608f041b34", null ], 4 | [ "arange", "arange_8hpp.html#a8e78c416b2386411d8c6b5226bd4c78a", null ], 5 | [ "arange", "arange_8hpp.html#ac94fc8f9322f93966478e9ffe7db51f2", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arccos_8hpp.js: -------------------------------------------------------------------------------- 1 | var arccos_8hpp = 2 | [ 3 | [ "arccos", "arccos_8hpp.html#aa57707902e14b3f16aec516e183d5830", null ], 4 | [ "arccos", "arccos_8hpp.html#a0a87e0681917bdd812e139e6d6ea4bf1", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arccosh_8hpp.js: -------------------------------------------------------------------------------- 1 | var arccosh_8hpp = 2 | [ 3 | [ "arccosh", "arccosh_8hpp.html#a9063e7275b83f3201f74a0014a9b54d5", null ], 4 | [ "arccosh", "arccosh_8hpp.html#a725eab730b946eca5d197933b9f955fa", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arcsin_8hpp.js: -------------------------------------------------------------------------------- 1 | var arcsin_8hpp = 2 | [ 3 | [ "arcsin", "arcsin_8hpp.html#a4b1b8fc9752c90328e3cadce151d6370", null ], 4 | [ "arcsin", "arcsin_8hpp.html#a6d18d24b8a33ec7df0e845d6a430d5f2", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arcsinh_8hpp.js: -------------------------------------------------------------------------------- 1 | var arcsinh_8hpp = 2 | [ 3 | [ "arcsinh", "arcsinh_8hpp.html#abbf91db9344e5d1a53325990ef5535a0", null ], 4 | [ "arcsinh", "arcsinh_8hpp.html#a74ebb0003f6cf0d0dc0fd8af1e983969", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arctan2_8hpp.js: -------------------------------------------------------------------------------- 1 | var arctan2_8hpp = 2 | [ 3 | [ "arctan2", "arctan2_8hpp.html#a3d3c4c6b273e6eee45cf6359cf621980", null ], 4 | [ "arctan2", "arctan2_8hpp.html#abdec674ddb32540775e97e0fca6016aa", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arctan_8hpp.js: -------------------------------------------------------------------------------- 1 | var arctan_8hpp = 2 | [ 3 | [ "arctan", "arctan_8hpp.html#ac7080b26d0d4d849197ae10ce6d94a53", null ], 4 | [ "arctan", "arctan_8hpp.html#a0f63f816e660b0a4b3da191c8584a21a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/arctanh_8hpp.js: -------------------------------------------------------------------------------- 1 | var arctanh_8hpp = 2 | [ 3 | [ "arctanh", "arctanh_8hpp.html#a1b71f03b842e44890312fa09ed1aa594", null ], 4 | [ "arctanh", "arctanh_8hpp.html#a01f43fad4032a2823fc3ed56137b93de", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/argmax_8hpp.js: -------------------------------------------------------------------------------- 1 | var argmax_8hpp = 2 | [ 3 | [ "argmax", "argmax_8hpp.html#a9bd808dce04134c3a70d0cb202f94464", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/argmin_8hpp.js: -------------------------------------------------------------------------------- 1 | var argmin_8hpp = 2 | [ 3 | [ "argmin", "argmin_8hpp.html#acbeede146d32768e2c0a136eabd8bff8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/argpartition_8hpp.js: -------------------------------------------------------------------------------- 1 | var argpartition_8hpp = 2 | [ 3 | [ "argpartition", "argpartition_8hpp.html#a2f1343a882a233d701fdb5cbaedcb1f0", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/argsort_8hpp.js: -------------------------------------------------------------------------------- 1 | var argsort_8hpp = 2 | [ 3 | [ "argsort", "argsort_8hpp.html#a2cc9510519d4d8ff92c3be56f1675ad3", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/argwhere_8hpp.js: -------------------------------------------------------------------------------- 1 | var argwhere_8hpp = 2 | [ 3 | [ "argwhere", "argwhere_8hpp.html#a2698517c2f77a53ee8a14a6a3a03497f", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/around_8hpp.js: -------------------------------------------------------------------------------- 1 | var around_8hpp = 2 | [ 3 | [ "around", "around_8hpp.html#a04bda32d0f6189b4f55ea8e97673f273", null ], 4 | [ "around", "around_8hpp.html#a32e869df2216c793407d6addea9bf890", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/array__equal_8hpp.js: -------------------------------------------------------------------------------- 1 | var array__equal_8hpp = 2 | [ 3 | [ "array_equal", "array__equal_8hpp.html#a0e8c1396cc01ccd9ec8ba549b6347e21", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/array__equiv_8hpp.js: -------------------------------------------------------------------------------- 1 | var array__equiv_8hpp = 2 | [ 3 | [ "array_equiv", "array__equiv_8hpp.html#ac7cfdea4ac1caa81eabdb5dfe33b90b8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/astype_8hpp.js: -------------------------------------------------------------------------------- 1 | var astype_8hpp = 2 | [ 3 | [ "astype", "astype_8hpp.html#ae65c22c4f7d8d6a6529b43a58b56acb7", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/average_8hpp.js: -------------------------------------------------------------------------------- 1 | var average_8hpp = 2 | [ 3 | [ "average", "average_8hpp.html#a9025fe780f7cb82e65c21738672f1d41", null ], 4 | [ "average", "average_8hpp.html#a171381462e430870904ae2a24ce2541a", null ], 5 | [ "average", "average_8hpp.html#ad4ed1a22d772e828b530474e9866859e", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bartlett_8hpp.js: -------------------------------------------------------------------------------- 1 | var bartlett_8hpp = 2 | [ 3 | [ "bartlett", "bartlett_8hpp.html#a52bcce6c1acd29aaed82dcbafd696707", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/bc_s.png -------------------------------------------------------------------------------- /docs/doxygen/html/bc_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/bc_sd.png -------------------------------------------------------------------------------- /docs/doxygen/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/bdwn.png -------------------------------------------------------------------------------- /docs/doxygen/html/bernoilli_8hpp.js: -------------------------------------------------------------------------------- 1 | var bernoilli_8hpp = 2 | [ 3 | [ "bernoulli", "bernoilli_8hpp.html#a8d4a1a62fc03a44cccfa4012413bd70f", null ], 4 | [ "bernoulli", "bernoilli_8hpp.html#a1a5af4283601fd8663dcdc34599aede3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bernoulli_8hpp.js: -------------------------------------------------------------------------------- 1 | var bernoulli_8hpp = 2 | [ 3 | [ "bernoilli", "bernoulli_8hpp.html#a59caf35b816a219aa2782dd45df207ca", null ], 4 | [ "bernoilli", "bernoulli_8hpp.html#a1af26e52a24fca2b572605ec4b2c1f1b", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__in_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__in_8hpp = 2 | [ 3 | [ "bessel_in", "bessel__in_8hpp.html#a92141b6d9ffda6c68c7cb13dee3eae60", null ], 4 | [ "bessel_in", "bessel__in_8hpp.html#a6e9dbda70e7c0732d0b63ea389e5af49", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__in__prime_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__in__prime_8hpp = 2 | [ 3 | [ "bessel_in_prime", "bessel__in__prime_8hpp.html#a85979b28c3403361a3e818c9cf8cdf16", null ], 4 | [ "bessel_in_prime", "bessel__in__prime_8hpp.html#a416353fb98d37ed2e1a8ab587a16f6f8", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__jn_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__jn_8hpp = 2 | [ 3 | [ "bessel_jn", "bessel__jn_8hpp.html#ab310a9680ad09bc52377898876a27620", null ], 4 | [ "bessel_jn", "bessel__jn_8hpp.html#a3986d3b42ddcd747d40fb6772b49536e", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__jn__prime_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__jn__prime_8hpp = 2 | [ 3 | [ "bessel_jn_prime", "bessel__jn__prime_8hpp.html#a6e4139a3ecc85275c4690d01453366dc", null ], 4 | [ "bessel_jn_prime", "bessel__jn__prime_8hpp.html#a3eef0d1e8d31602e816578f778feefb5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__kn_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__kn_8hpp = 2 | [ 3 | [ "bessel_kn", "bessel__kn_8hpp.html#a5727fa899a61975ffcb79d84fd2d231b", null ], 4 | [ "bessel_kn", "bessel__kn_8hpp.html#a614d69a09535948c87124fe5662452dc", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__kn__prime_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__kn__prime_8hpp = 2 | [ 3 | [ "bessel_kn_prime", "bessel__kn__prime_8hpp.html#a98aad61d58f7d046091f6f569d2c97fb", null ], 4 | [ "bessel_kn_prime", "bessel__kn__prime_8hpp.html#aa3159d6cbb77b6bc1b913c25d969fa3c", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__yn_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__yn_8hpp = 2 | [ 3 | [ "bessel_yn", "bessel__yn_8hpp.html#a2a215c5881fc0d98e444942d3a67ed5b", null ], 4 | [ "bessel_yn", "bessel__yn_8hpp.html#a55bbc44ffde64dfb7af7a803250cd2a6", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bessel__yn__prime_8hpp.js: -------------------------------------------------------------------------------- 1 | var bessel__yn__prime_8hpp = 2 | [ 3 | [ "bessel_yn_prime", "bessel__yn__prime_8hpp.html#a129b71949a9659519aea36dc64d47020", null ], 4 | [ "bessel_yn_prime", "bessel__yn__prime_8hpp.html#a742272fb70f0b85164b61409ad3f464f", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/binary_repr_8hpp.js: -------------------------------------------------------------------------------- 1 | var binary_repr_8hpp = 2 | [ 3 | [ "binaryRepr", "binary_repr_8hpp.html#a8c8a7dbf208bb2d31983140598e7cebe", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bincount_8hpp.js: -------------------------------------------------------------------------------- 1 | var bincount_8hpp = 2 | [ 3 | [ "bincount", "bincount_8hpp.html#a5e9b50f2e71628c7d1b664b7c575a757", null ], 4 | [ "bincount", "bincount_8hpp.html#a726e4282f63047fc7a8863e73c7c2fe3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/binomial_8hpp.js: -------------------------------------------------------------------------------- 1 | var binomial_8hpp = 2 | [ 3 | [ "binomial", "binomial_8hpp.html#a2d781eb2c0df2db3439bada6fc54732b", null ], 4 | [ "binomial", "binomial_8hpp.html#a13657004ec565f15648a520e3d060002", null ], 5 | [ "binomial", "binomial_8hpp.html#a70b00d54808f0e4f6ffef73bf370e904", null ], 6 | [ "binomial", "binomial_8hpp.html#a13742d34fa6695d2e35373bdab57bc35", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bit__count_8hpp.js: -------------------------------------------------------------------------------- 1 | var bit__count_8hpp = 2 | [ 3 | [ "bit_count", "bit__count_8hpp.html#a9c2abd2b62afc92cf5e67ce948b3e456", null ], 4 | [ "bit_count", "bit__count_8hpp.html#a93b3894c7b510e74bcc15930d58dbdeb", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bitwise__and_8hpp.js: -------------------------------------------------------------------------------- 1 | var bitwise__and_8hpp = 2 | [ 3 | [ "bitwise_and", "bitwise__and_8hpp.html#a5afa3584a513bcb32788d5132a38729d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bitwise__not_8hpp.js: -------------------------------------------------------------------------------- 1 | var bitwise__not_8hpp = 2 | [ 3 | [ "bitwise_not", "bitwise__not_8hpp.html#a56ece35a68fac0c7b4d284e8c1ccad8b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bitwise__or_8hpp.js: -------------------------------------------------------------------------------- 1 | var bitwise__or_8hpp = 2 | [ 3 | [ "bitwise_or", "bitwise__or_8hpp.html#a3008c967d169052c08854a03eeac728b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/bitwise__xor_8hpp.js: -------------------------------------------------------------------------------- 1 | var bitwise__xor_8hpp = 2 | [ 3 | [ "bitwise_xor", "bitwise__xor_8hpp.html#a0fcfb7c2d5da6c8c84afafe62f47f5b5", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/blackman_8hpp.js: -------------------------------------------------------------------------------- 1 | var blackman_8hpp = 2 | [ 3 | [ "blackman", "blackman_8hpp.html#a7ae29acd5378f67cd81996cd22d97350", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/byteswap_8hpp.js: -------------------------------------------------------------------------------- 1 | var byteswap_8hpp = 2 | [ 3 | [ "byteswap", "byteswap_8hpp.html#a96f6d582acc2a14ae7c02897cca96991", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cauchy_8hpp.js: -------------------------------------------------------------------------------- 1 | var cauchy_8hpp = 2 | [ 3 | [ "cauchy", "cauchy_8hpp.html#a4b69e010c98aa274e9ae254720b1dbfc", null ], 4 | [ "cauchy", "cauchy_8hpp.html#aa72b221b82940e126a4c740ee55b269b", null ], 5 | [ "cauchy", "cauchy_8hpp.html#ac0f4cb3f3d96c9062fa7cda45d9c591d", null ], 6 | [ "cauchy", "cauchy_8hpp.html#a124192b4521100b377ff3c3ad922824b", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cbrt_8hpp.js: -------------------------------------------------------------------------------- 1 | var cbrt_8hpp = 2 | [ 3 | [ "cbrt", "cbrt_8hpp.html#a85d4c2b50b165171b2ab8a13d3402d95", null ], 4 | [ "cbrt", "cbrt_8hpp.html#a21de0caa1ff8e9e7baed8a8a57f7bcab", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ceil_8hpp.js: -------------------------------------------------------------------------------- 1 | var ceil_8hpp = 2 | [ 3 | [ "ceil", "ceil_8hpp.html#aa1dfe8a363c90077aa7c8e6484a6f6b4", null ], 4 | [ "ceil", "ceil_8hpp.html#a291189b2c2bc35a608b393ab1c06e84a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/center_of_mass_8hpp.js: -------------------------------------------------------------------------------- 1 | var center_of_mass_8hpp = 2 | [ 3 | [ "centerOfMass", "center_of_mass_8hpp.html#a712445c9dd3bb483ae6a6be90e79c3e8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/centroid_clusters_8hpp.js: -------------------------------------------------------------------------------- 1 | var centroid_clusters_8hpp = 2 | [ 3 | [ "centroidClusters", "centroid_clusters_8hpp.html#af849966de9c8ef661dfe714506de9c4a", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/chebyshev__t_8hpp.js: -------------------------------------------------------------------------------- 1 | var chebyshev__t_8hpp = 2 | [ 3 | [ "chebyshev_t", "chebyshev__t_8hpp.html#ae4c5900df91c90ca21b3d177347e4d0f", null ], 4 | [ "chebyshev_t", "chebyshev__t_8hpp.html#afc70c903be3c216cf6215b76c89fecc0", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/chebyshev__u_8hpp.js: -------------------------------------------------------------------------------- 1 | var chebyshev__u_8hpp = 2 | [ 3 | [ "chebyshev_u", "chebyshev__u_8hpp.html#a6c9ffe24b0f67f4f28b4b9706a39fcf0", null ], 4 | [ "chebyshev_u", "chebyshev__u_8hpp.html#a1e0f56b8366b1f83b48e30e7bb04c937", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/chi_square_8hpp.js: -------------------------------------------------------------------------------- 1 | var chi_square_8hpp = 2 | [ 3 | [ "chiSquare", "chi_square_8hpp.html#ad2dd653d4b52c5d549a511ba800b996e", null ], 4 | [ "chiSquare", "chi_square_8hpp.html#abb480e9a17b71ea09ef0f043c081e9ff", null ], 5 | [ "chiSquare", "chi_square_8hpp.html#a0ddbd891bcb66e9a42d2817091e3a70d", null ], 6 | [ "chiSquare", "chi_square_8hpp.html#a2501c77d0bf10b483cd8676fc0055e0d", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/choice_8hpp.js: -------------------------------------------------------------------------------- 1 | var choice_8hpp = 2 | [ 3 | [ "choice", "choice_8hpp.html#ad60ec32743642bd0540fec0076043fed", null ], 4 | [ "choice", "choice_8hpp.html#a5bc8f54b22facd8e566e25d4ec040324", null ], 5 | [ "choice", "choice_8hpp.html#a036516a94f10c22896e6cd34cc9077e9", null ], 6 | [ "choice", "choice_8hpp.html#aea412459e3aa1b2f9200fa57f9c73938", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cholesky_8hpp.js: -------------------------------------------------------------------------------- 1 | var cholesky_8hpp = 2 | [ 3 | [ "cholesky", "cholesky_8hpp.html#ae97a3a4f8b9f2d4253060db5928da6d1", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/classnc_1_1integrate_1_1_legendre_polynomial.js: -------------------------------------------------------------------------------- 1 | var classnc_1_1integrate_1_1_legendre_polynomial = 2 | [ 3 | [ "LegendrePolynomial", "classnc_1_1integrate_1_1_legendre_polynomial.html#a2e1fefae138e66215cd7586a85fc3642", null ], 4 | [ "getRoot", "classnc_1_1integrate_1_1_legendre_polynomial.html#a50df5ad7c7312b1bf814fcf8b5bb0d94", null ], 5 | [ "getWeight", "classnc_1_1integrate_1_1_legendre_polynomial.html#a5a97c4c53f878cda71129dbd4398b1a9", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.js: -------------------------------------------------------------------------------- 1 | var classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize = 2 | [ 3 | [ "value", "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html#abcefce32a229b9072bce3593e02fe319", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.js: -------------------------------------------------------------------------------- 1 | var classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31 = 2 | [ 3 | [ "value", "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html#a5fb6e321c54ab9ccc32f1754ec99edb4", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/clip_8hpp.js: -------------------------------------------------------------------------------- 1 | var clip_8hpp = 2 | [ 3 | [ "clip", "clip_8hpp.html#aa1313316a42eb015a3a5af69150bae19", null ], 4 | [ "clip", "clip_8hpp.html#a5200696e06dadf4eca2f0d7332ed4af1", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/closed.png -------------------------------------------------------------------------------- /docs/doxygen/html/cluster_pixels_8hpp.js: -------------------------------------------------------------------------------- 1 | var cluster_pixels_8hpp = 2 | [ 3 | [ "clusterPixels", "cluster_pixels_8hpp.html#aef086af8befb6a2129a0572eb11605f5", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cnr_8hpp.js: -------------------------------------------------------------------------------- 1 | var cnr_8hpp = 2 | [ 3 | [ "cnr", "cnr_8hpp.html#a8249c674798e782f98a90942818ab395", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/column__stack_8hpp.js: -------------------------------------------------------------------------------- 1 | var column__stack_8hpp = 2 | [ 3 | [ "column_stack", "column__stack_8hpp.html#a1fd4b60fc74fcb37dff8faa08e877241", null ], 4 | [ "column_stack", "column__stack_8hpp.html#a85eb121764f6aac6c830b9ef514a57cb", null ], 5 | [ "column_stack", "column__stack_8hpp.html#a584c59f24dbaadf333f8ef037db36cc7", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/comp__ellint__1_8hpp.js: -------------------------------------------------------------------------------- 1 | var comp__ellint__1_8hpp = 2 | [ 3 | [ "comp_ellint_1", "comp__ellint__1_8hpp.html#a445930bd5caceb59104bc466c55d479a", null ], 4 | [ "comp_ellint_1", "comp__ellint__1_8hpp.html#a3b24e9dde5d68f19d8a29de419e32024", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/comp__ellint__2_8hpp.js: -------------------------------------------------------------------------------- 1 | var comp__ellint__2_8hpp = 2 | [ 3 | [ "comp_ellint_2", "comp__ellint__2_8hpp.html#abb6b67ccb2a8ea054c188d82f3a67013", null ], 4 | [ "comp_ellint_2", "comp__ellint__2_8hpp.html#abfcffce97bdc9114b78a4c6d06956fc5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/comp__ellint__3_8hpp.js: -------------------------------------------------------------------------------- 1 | var comp__ellint__3_8hpp = 2 | [ 3 | [ "comp_ellint_3", "comp__ellint__3_8hpp.html#a40e29e793c7c7ee437f242a8cc7e8e26", null ], 4 | [ "comp_ellint_3", "comp__ellint__3_8hpp.html#a8c90b0cd0de06a5e789e3b9f8b0a1243", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/complementary_mean_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var complementary_mean_filter1d_8hpp = 2 | [ 3 | [ "complementaryMeanFilter1d", "complementary_mean_filter1d_8hpp.html#a04dcc8d7c038c9014bac9aa67dd041ca", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/complementary_mean_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var complementary_mean_filter_8hpp = 2 | [ 3 | [ "complementaryMeanFilter", "complementary_mean_filter_8hpp.html#a641885b245c51d3f1ce579a040fe8d7b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/complementary_median_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var complementary_median_filter1d_8hpp = 2 | [ 3 | [ "complementaryMedianFilter1d", "complementary_median_filter1d_8hpp.html#a3a525dfb96209c3163c95357f8d30b91", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/complementary_median_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var complementary_median_filter_8hpp = 2 | [ 3 | [ "complementaryMedianFilter", "complementary_median_filter_8hpp.html#a328e0d2fa1a5f472de162c4ee0e1f8e4", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/complex_8hpp.js: -------------------------------------------------------------------------------- 1 | var complex_8hpp = 2 | [ 3 | [ "complex", "complex_8hpp.html#ab84a62b7de04ef6f69870e51f5dd8d00", null ], 4 | [ "complex", "complex_8hpp.html#a1d8b87baeef70163d94b40c96759ecc0", null ], 5 | [ "complex", "complex_8hpp.html#a56639fcc468435514861ce0e5059d82f", null ], 6 | [ "complex", "complex_8hpp.html#a2e653b99a0f26149fe399ebed1fc949e", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/concatenate_8hpp.js: -------------------------------------------------------------------------------- 1 | var concatenate_8hpp = 2 | [ 3 | [ "concatenate", "concatenate_8hpp.html#a6848af2d5c509218538f48808241b1b1", null ], 4 | [ "concatenate", "concatenate_8hpp.html#a7db9a517fe44edb4a31aa8acc2c35d23", null ], 5 | [ "concatenate", "concatenate_8hpp.html#ae92dfe707e1f5354970f3e85bc39af10", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/conj_8hpp.js: -------------------------------------------------------------------------------- 1 | var conj_8hpp = 2 | [ 3 | [ "conj", "conj_8hpp.html#a57ab16b7a491e1391740254e9a176678", null ], 4 | [ "conj", "conj_8hpp.html#a0387ae5584e72894ae9e690eba21e26b", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/constant1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var constant1d_8hpp = 2 | [ 3 | [ "constant1d", "constant1d_8hpp.html#a6228d12da58c4b55bba5657e2c4a0a73", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/constant2d_8hpp.js: -------------------------------------------------------------------------------- 1 | var constant2d_8hpp = 2 | [ 3 | [ "constant2d", "constant2d_8hpp.html#a76c4f4a1ad655a30695ac80e99cc6731", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/contains_8hpp.js: -------------------------------------------------------------------------------- 1 | var contains_8hpp = 2 | [ 3 | [ "contains", "contains_8hpp.html#affa642729240d8c5cc97a2aeff298903", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/convolve1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var convolve1d_8hpp = 2 | [ 3 | [ "convolve1d", "convolve1d_8hpp.html#a005c1e50b02c5eb7203e2e3d2d6ccc62", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/convolve_8hpp.js: -------------------------------------------------------------------------------- 1 | var convolve_8hpp = 2 | [ 3 | [ "convolve", "convolve_8hpp.html#a6b257d6e403f5f9003934a4fd1fb5feb", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/copy_8hpp.js: -------------------------------------------------------------------------------- 1 | var copy_8hpp = 2 | [ 3 | [ "copy", "copy_8hpp.html#a77989f6ee687183d9797ef6d4a8c3dce", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/copy_sign_8hpp.js: -------------------------------------------------------------------------------- 1 | var copy_sign_8hpp = 2 | [ 3 | [ "copySign", "copy_sign_8hpp.html#ab889b055de45596f5c541cdfc213b5c9", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/copyto_8hpp.js: -------------------------------------------------------------------------------- 1 | var copyto_8hpp = 2 | [ 3 | [ "copyto", "copyto_8hpp.html#a4330ea6bba1595fd0360b96005084792", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/corrcoef_8hpp.js: -------------------------------------------------------------------------------- 1 | var corrcoef_8hpp = 2 | [ 3 | [ "corrcoef", "corrcoef_8hpp.html#ae0cc34635631f14a64b96867dbd961ce", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cos_8hpp.js: -------------------------------------------------------------------------------- 1 | var cos_8hpp = 2 | [ 3 | [ "cos", "cos_8hpp.html#af208ae28fe0df17392ca128188cbcd73", null ], 4 | [ "cos", "cos_8hpp.html#a736de91eb8f79bfaf4dc92d7161f1c87", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cosh_8hpp.js: -------------------------------------------------------------------------------- 1 | var cosh_8hpp = 2 | [ 3 | [ "cosh", "cosh_8hpp.html#a520e0290bb667b43a9f494b3858b5f17", null ], 4 | [ "cosh", "cosh_8hpp.html#abb07133a1f54b24a4a4986eefb5eda85", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/count__nonzero_8hpp.js: -------------------------------------------------------------------------------- 1 | var count__nonzero_8hpp = 2 | [ 3 | [ "count_nonzero", "count__nonzero_8hpp.html#aac312a24799da39c6cb6960f07812111", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cov_8hpp.js: -------------------------------------------------------------------------------- 1 | var cov_8hpp = 2 | [ 3 | [ "cov", "cov_8hpp.html#a6f1f1f1ad957f3bfb1e0a4814790adcf", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cov__inv_8hpp.js: -------------------------------------------------------------------------------- 1 | var cov__inv_8hpp = 2 | [ 3 | [ "cov_inv", "cov__inv_8hpp.html#a0907f107884308608b2624f7469af3fd", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cross_8hpp.js: -------------------------------------------------------------------------------- 1 | var cross_8hpp = 2 | [ 3 | [ "cross", "cross_8hpp.html#ab414231c92c4fc20d778edc2c9b5dc12", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cumprod_8hpp.js: -------------------------------------------------------------------------------- 1 | var cumprod_8hpp = 2 | [ 3 | [ "cumprod", "cumprod_8hpp.html#a55da5439b1a77eb40e9e60aa233a2c7d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cumsum_8hpp.js: -------------------------------------------------------------------------------- 1 | var cumsum_8hpp = 2 | [ 3 | [ "cumsum", "cumsum_8hpp.html#a77c63c9c21b401f2b3b58f14f49c3b44", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cyclic__hankel__1_8hpp.js: -------------------------------------------------------------------------------- 1 | var cyclic__hankel__1_8hpp = 2 | [ 3 | [ "cyclic_hankel_1", "cyclic__hankel__1_8hpp.html#ae7053cd6eafb59a62ba6ede63aac6f90", null ], 4 | [ "cyclic_hankel_1", "cyclic__hankel__1_8hpp.html#af5dd42de33ec77dda47dd089561895d5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/cyclic__hankel__2_8hpp.js: -------------------------------------------------------------------------------- 1 | var cyclic__hankel__2_8hpp = 2 | [ 3 | [ "cyclic_hankel_2", "cyclic__hankel__2_8hpp.html#a8e3b27238d1cae20e4ee071766549c5d", null ], 4 | [ "cyclic_hankel_2", "cyclic__hankel__2_8hpp.html#a388472a49e89f21b3eb144368fe55664", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/deg2rad_8hpp.js: -------------------------------------------------------------------------------- 1 | var deg2rad_8hpp = 2 | [ 3 | [ "deg2rad", "deg2rad_8hpp.html#a828388cb973b4e28e0b7060694e2604a", null ], 4 | [ "deg2rad", "deg2rad_8hpp.html#a2cdc1c791ab98eb708ba5662ffb82b39", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/degree_seperation_8hpp.js: -------------------------------------------------------------------------------- 1 | var degree_seperation_8hpp = 2 | [ 3 | [ "degreeSeperation", "degree_seperation_8hpp.html#a06135e21507cfe2aa1cb4154fe1702bf", null ], 4 | [ "degreeSeperation", "degree_seperation_8hpp.html#abc47b2d64d107bcb19ff696ecff89edf", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/degrees_8hpp.js: -------------------------------------------------------------------------------- 1 | var degrees_8hpp = 2 | [ 3 | [ "degrees", "degrees_8hpp.html#aab0d24a5ffaf73330854bbcfc47d2fee", null ], 4 | [ "degrees", "degrees_8hpp.html#a75c2b6b4713a5695a4738da25cf9d262", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/det_8hpp.js: -------------------------------------------------------------------------------- 1 | var det_8hpp = 2 | [ 3 | [ "det", "det_8hpp.html#a560873e98ef9b3d8da501ad6feb121e9", null ], 4 | [ "det", "det_8hpp.html#a636d3082932ef8a13aaf9c4201bf8f9d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/diag_8hpp.js: -------------------------------------------------------------------------------- 1 | var diag_8hpp = 2 | [ 3 | [ "diag", "diag_8hpp.html#a6375a7e0a4901bcceab8729504c28780", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/diagflat_8hpp.js: -------------------------------------------------------------------------------- 1 | var diagflat_8hpp = 2 | [ 3 | [ "diagflat", "diagflat_8hpp.html#a90428320dd26e711d92267d864d566d0", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/diagonal_8hpp.js: -------------------------------------------------------------------------------- 1 | var diagonal_8hpp = 2 | [ 3 | [ "diagonal", "diagonal_8hpp.html#a2a758d39465793906d06e6f175feb688", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/diff_8hpp.js: -------------------------------------------------------------------------------- 1 | var diff_8hpp = 2 | [ 3 | [ "diff", "diff_8hpp.html#a943a802bfe6ecf2984c0ce56577f252f", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/digamma_8hpp.js: -------------------------------------------------------------------------------- 1 | var digamma_8hpp = 2 | [ 3 | [ "digamma", "digamma_8hpp.html#a6419633142287d898c551f99cd7c589d", null ], 4 | [ "digamma", "digamma_8hpp.html#a78dead2375df379d1976ff87f62fbade", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/digitize_8hpp.js: -------------------------------------------------------------------------------- 1 | var digitize_8hpp = 2 | [ 3 | [ "digitize", "digitize_8hpp.html#a7c60c56930513e09988daffcda2faa4c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.js: -------------------------------------------------------------------------------- 1 | var dir_093b14450e434accd2cde91cedff0d18 = 2 | [ 3 | [ "SVDClass.hpp", "_s_v_d_class_8hpp.html", "_s_v_d_class_8hpp" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_10b69f38d52e59bd23d9fc1937bea22a.js: -------------------------------------------------------------------------------- 1 | var dir_10b69f38d52e59bd23d9fc1937bea22a = 2 | [ 3 | [ "gauss_legendre.hpp", "gauss__legendre_8hpp.html", "gauss__legendre_8hpp" ], 4 | [ "romberg.hpp", "romberg_8hpp.html", "romberg_8hpp" ], 5 | [ "simpson.hpp", "simpson_8hpp.html", "simpson_8hpp" ], 6 | [ "trapazoidal.hpp", "trapazoidal_8hpp.html", "trapazoidal_8hpp" ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_22368e90b3593b912515c50bf54c969c.js: -------------------------------------------------------------------------------- 1 | var dir_22368e90b3593b912515c50bf54c969c = 2 | [ 3 | [ "Bisection.hpp", "_bisection_8hpp.html", "_bisection_8hpp" ], 4 | [ "Brent.hpp", "_brent_8hpp.html", "_brent_8hpp" ], 5 | [ "Dekker.hpp", "_dekker_8hpp.html", "_dekker_8hpp" ], 6 | [ "Iteration.hpp", "_iteration_8hpp.html", "_iteration_8hpp" ], 7 | [ "Newton.hpp", "_newton_8hpp.html", "_newton_8hpp" ], 8 | [ "Secant.hpp", "_secant_8hpp.html", "_secant_8hpp" ] 9 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_2e8552338a5fe196f81c9ab4a461b773.js: -------------------------------------------------------------------------------- 1 | var dir_2e8552338a5fe196f81c9ab4a461b773 = 2 | [ 3 | [ "Vec2.hpp", "_vec2_8hpp.html", "_vec2_8hpp" ], 4 | [ "Vec3.hpp", "_vec3_8hpp.html", "_vec3_8hpp" ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_49e56c817e5e54854c35e136979f97ca.js: -------------------------------------------------------------------------------- 1 | var dir_49e56c817e5e54854c35e136979f97ca = 2 | [ 3 | [ "markdown", "dir_953ac13dcbfb3e70ef6edb1a0956b929.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_5cccc998a857696e320833db04811b65.js: -------------------------------------------------------------------------------- 1 | var dir_5cccc998a857696e320833db04811b65 = 2 | [ 3 | [ "Clock.hpp", "_clock_8hpp.html", "_clock_8hpp" ], 4 | [ "DateTime.hpp", "_date_time_2_date_time_8hpp.html", "_date_time_2_date_time_8hpp" ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_5de075070a423c280ad6ed943802bf75.js: -------------------------------------------------------------------------------- 1 | var dir_5de075070a423c280ad6ed943802bf75 = 2 | [ 3 | [ "BoostInterface.hpp", "_boost_interface_8hpp.html", null ], 4 | [ "BoostNumpyNdarrayHelper.hpp", "_boost_numpy_ndarray_helper_8hpp.html", null ], 5 | [ "PybindInterface.hpp", "_pybind_interface_8hpp.html", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_812c63cdb45b3d369433603c764d8ca4.js: -------------------------------------------------------------------------------- 1 | var dir_812c63cdb45b3d369433603c764d8ca4 = 2 | [ 3 | [ "BinaryLogger.hpp", "_binary_logger_8hpp.html", "_binary_logger_8hpp" ], 4 | [ "Logger.hpp", "_logger_8hpp.html", "_logger_8hpp" ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_8e10c5302eb28a2724f15da9a6fa6b15.js: -------------------------------------------------------------------------------- 1 | var dir_8e10c5302eb28a2724f15da9a6fa6b15 = 2 | [ 3 | [ "NdArrayBroadcast.hpp", "_nd_array_broadcast_8hpp.html", "_nd_array_broadcast_8hpp" ], 4 | [ "NdArrayCore.hpp", "_nd_array_core_8hpp.html", "_nd_array_core_8hpp" ], 5 | [ "NdArrayIterators.hpp", "_nd_array_iterators_8hpp.html", "_nd_array_iterators_8hpp" ], 6 | [ "NdArrayOperators.hpp", "_nd_array_operators_8hpp.html", "_nd_array_operators_8hpp" ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_cac3062759fc9841f0966ab05282555a.js: -------------------------------------------------------------------------------- 1 | var dir_cac3062759fc9841f0966ab05282555a = 2 | [ 3 | [ "DCM.hpp", "_d_c_m_8hpp.html", "_d_c_m_8hpp" ], 4 | [ "Quaternion.hpp", "_quaternion_8hpp.html", "_quaternion_8hpp" ], 5 | [ "rodriguesRotation.hpp", "rodrigues_rotation_8hpp.html", "rodrigues_rotation_8hpp" ], 6 | [ "wahbasProblem.hpp", "wahbas_problem_8hpp.html", "wahbas_problem_8hpp" ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.js: -------------------------------------------------------------------------------- 1 | var dir_d44c64559bbebec7f509842c48db8b23 = 2 | [ 3 | [ "NumCpp", "dir_34171bd951b13a53aa9f237277a18e40.html", "dir_34171bd951b13a53aa9f237277a18e40" ], 4 | [ "NumCpp.hpp", "_num_cpp_8hpp.html", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_f7abd548f101bada8968797392787ec9.js: -------------------------------------------------------------------------------- 1 | var dir_f7abd548f101bada8968797392787ec9 = 2 | [ 3 | [ "Filters1d", "dir_ccac4f9986402d0375bdb0274c573e10.html", "dir_ccac4f9986402d0375bdb0274c573e10" ], 4 | [ "Filters2d", "dir_e70e3c350b58629b2f80cdf8725e71de.html", "dir_e70e3c350b58629b2f80cdf8725e71de" ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_f80dee9f889b1b78f4bee16631eb7d22.js: -------------------------------------------------------------------------------- 1 | var dir_f80dee9f889b1b78f4bee16631eb7d22 = 2 | [ 3 | [ "Boundaries", "dir_fd15cf3044ef18c575a802718b3c6ac6.html", "dir_fd15cf3044ef18c575a802718b3c6ac6" ], 4 | [ "Filters", "dir_f7abd548f101bada8968797392787ec9.html", "dir_f7abd548f101bada8968797392787ec9" ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dir_fd15cf3044ef18c575a802718b3c6ac6.js: -------------------------------------------------------------------------------- 1 | var dir_fd15cf3044ef18c575a802718b3c6ac6 = 2 | [ 3 | [ "Boundaries1d", "dir_135bbb5e4eb4ddbda27ac0540001f7fd.html", "dir_135bbb5e4eb4ddbda27ac0540001f7fd" ], 4 | [ "Boundaries2d", "dir_b6a8313716ea291fbd26120862b344bc.html", "dir_b6a8313716ea291fbd26120862b344bc" ], 5 | [ "Boundary.hpp", "_boundary_8hpp.html", "_boundary_8hpp" ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/discrete_8hpp.js: -------------------------------------------------------------------------------- 1 | var discrete_8hpp = 2 | [ 3 | [ "discrete", "discrete_8hpp.html#a2ea5db9ee73d9f7a633e5899e4be2c94", null ], 4 | [ "discrete", "discrete_8hpp.html#ac50b222086b111163bf0ec065f64f2e1", null ], 5 | [ "discrete", "discrete_8hpp.html#a1546c9ebb8256f247bf71d6aaf311990", null ], 6 | [ "discrete", "discrete_8hpp.html#a6dbfaffd7074679fcf89884568b0505d", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/doc.png -------------------------------------------------------------------------------- /docs/doxygen/html/dot_8hpp.js: -------------------------------------------------------------------------------- 1 | var dot_8hpp = 2 | [ 3 | [ "dot", "dot_8hpp.html#a50b693e816ecaa711b09997abaacec9a", null ], 4 | [ "dot", "dot_8hpp.html#adb9aa482fe676e54d83d35ec2b761635", null ], 5 | [ "dot", "dot_8hpp.html#a086a6d6780772c795a63787412e4e813", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/dump_8hpp.js: -------------------------------------------------------------------------------- 1 | var dump_8hpp = 2 | [ 3 | [ "dump", "dump_8hpp.html#af6e71bd96dbc78f9ca018d2da0a7e653", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ellint__1_8hpp.js: -------------------------------------------------------------------------------- 1 | var ellint__1_8hpp = 2 | [ 3 | [ "ellint_1", "ellint__1_8hpp.html#a0198bebbecba53e96b36d270be457490", null ], 4 | [ "ellint_1", "ellint__1_8hpp.html#aa7fd769db69bde9583f039306c011816", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ellint__2_8hpp.js: -------------------------------------------------------------------------------- 1 | var ellint__2_8hpp = 2 | [ 3 | [ "ellint_2", "ellint__2_8hpp.html#a920986b87a9c40529343491bebdadfe0", null ], 4 | [ "ellint_2", "ellint__2_8hpp.html#ab9c4568493afa63db21d5b88f3c2a82d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ellint__3_8hpp.js: -------------------------------------------------------------------------------- 1 | var ellint__3_8hpp = 2 | [ 3 | [ "ellint_3", "ellint__3_8hpp.html#ab04eafe87336f4206d63b804dc8653ca", null ], 4 | [ "ellint_3", "ellint__3_8hpp.html#aaf7e9aa3cce2502f67735c787588a2eb", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/empty_8hpp.js: -------------------------------------------------------------------------------- 1 | var empty_8hpp = 2 | [ 3 | [ "empty", "empty_8hpp.html#a97dd73bece2058ce18e59eb2df095042", null ], 4 | [ "empty", "empty_8hpp.html#a3012780ddd20c705d9cff13bac986eff", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/empty__like_8hpp.js: -------------------------------------------------------------------------------- 1 | var empty__like_8hpp = 2 | [ 3 | [ "empty_like", "empty__like_8hpp.html#a875e297baf1d0f1ae229b4342bad8f04", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/endianess_8hpp.js: -------------------------------------------------------------------------------- 1 | var endianess_8hpp = 2 | [ 3 | [ "endianess", "endianess_8hpp.html#a6d1bce5e0cf3f24f84a50b945eec7a26", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/equal_8hpp.js: -------------------------------------------------------------------------------- 1 | var equal_8hpp = 2 | [ 3 | [ "equal", "equal_8hpp.html#a6891660e45d9f047bfc3a4625f4a255d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/erf_8hpp.js: -------------------------------------------------------------------------------- 1 | var erf_8hpp = 2 | [ 3 | [ "erf", "erf_8hpp.html#a5b7ac05949538787c3fdec373cb05126", null ], 4 | [ "erf", "erf_8hpp.html#a8b2da132f8a6d86ea0bcce34819d1833", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/erf__inv_8hpp.js: -------------------------------------------------------------------------------- 1 | var erf__inv_8hpp = 2 | [ 3 | [ "erf_inv", "erf__inv_8hpp.html#abab69146b99ff384c6de4a24da69a780", null ], 4 | [ "erf_inv", "erf__inv_8hpp.html#a0f66785ec1e2643dd4c932ff7cae61a4", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/erfc_8hpp.js: -------------------------------------------------------------------------------- 1 | var erfc_8hpp = 2 | [ 3 | [ "erfc", "erfc_8hpp.html#a8671b7ab0e06230889f4a0cf417a248f", null ], 4 | [ "erfc", "erfc_8hpp.html#a1673dca59c73c85eedf077fb62aab5d7", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/erfc__inv_8hpp.js: -------------------------------------------------------------------------------- 1 | var erfc__inv_8hpp = 2 | [ 3 | [ "erfc_inv", "erfc__inv_8hpp.html#a3c9551b639e79ce3024fef298f4ace8c", null ], 4 | [ "erfc_inv", "erfc__inv_8hpp.html#a653404a544d777c6d7d636a207ee7bca", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/essentially_equal_8hpp.js: -------------------------------------------------------------------------------- 1 | var essentially_equal_8hpp = 2 | [ 3 | [ "essentiallyEqual", "essentially_equal_8hpp.html#a963b90e7c9a3b057a924298750ddf74c", null ], 4 | [ "essentiallyEqual", "essentially_equal_8hpp.html#aedd8afd691cf9f5a8f8e12c9ca33743a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/essentially_equal_complex_8hpp.js: -------------------------------------------------------------------------------- 1 | var essentially_equal_complex_8hpp = 2 | [ 3 | [ "essentiallyEqual", "essentially_equal_complex_8hpp.html#a139da62fc9c51ae191e7451bb4edb706", null ], 4 | [ "essentiallyEqual", "essentially_equal_complex_8hpp.html#a7e935ef90aaa774b37e6ab4b5316e01f", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/examples.js: -------------------------------------------------------------------------------- 1 | var examples = 2 | [ 3 | [ "GaussNewtonNlls.cpp", "_gauss_newton_nlls_8cpp-example.html", null ], 4 | [ "InterfaceWithEigen.cpp", "_interface_with_eigen_8cpp-example.html", null ], 5 | [ "InterfaceWithOpenCV.cpp", "_interface_with_open_c_v_8cpp-example.html", null ], 6 | [ "ReadMe.cpp", "_read_me_8cpp-example.html", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/exp2_8hpp.js: -------------------------------------------------------------------------------- 1 | var exp2_8hpp = 2 | [ 3 | [ "exp2", "exp2_8hpp.html#a0595c87603ad5c35ddc78eab15148db7", null ], 4 | [ "exp2", "exp2_8hpp.html#aafbab1d2bd67c753fb1656e037bd8b1d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/exp_8hpp.js: -------------------------------------------------------------------------------- 1 | var exp_8hpp = 2 | [ 3 | [ "exp", "exp_8hpp.html#a4069791fefff15148813bbbbadf064b1", null ], 4 | [ "exp", "exp_8hpp.html#ad7e555d480465930a7ac44f4ab39eea7", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/expint_8hpp.js: -------------------------------------------------------------------------------- 1 | var expint_8hpp = 2 | [ 3 | [ "expint", "expint_8hpp.html#a98e6e3ad00faf7aef9f90e1c187f49b0", null ], 4 | [ "expint", "expint_8hpp.html#a23097c9d953be37f1399154274ba2ff1", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/expm1_8hpp.js: -------------------------------------------------------------------------------- 1 | var expm1_8hpp = 2 | [ 3 | [ "expm1", "expm1_8hpp.html#ac1e31d2bff523a5936799445f16d11af", null ], 4 | [ "expm1", "expm1_8hpp.html#a1f8b7ba3bb64b868fc41508d6912afab", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/exponential_8hpp.js: -------------------------------------------------------------------------------- 1 | var exponential_8hpp = 2 | [ 3 | [ "exponential", "exponential_8hpp.html#ac9e91a01188c8bdbb5c6a6ef9eba8ff0", null ], 4 | [ "exponential", "exponential_8hpp.html#a278212d1b177cb2bba47215d083bb10f", null ], 5 | [ "exponential", "exponential_8hpp.html#a8a32f909feccd6758fdaf83e9165a9e1", null ], 6 | [ "exponential", "exponential_8hpp.html#af48797ccfc3ba95d300bc8b2ee6985ab", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/extract_8hpp.js: -------------------------------------------------------------------------------- 1 | var extract_8hpp = 2 | [ 3 | [ "extract", "extract_8hpp.html#ab8bb2c211c6492e27e11cb071df6ea2c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/extreme_value_8hpp.js: -------------------------------------------------------------------------------- 1 | var extreme_value_8hpp = 2 | [ 3 | [ "extremeValue", "extreme_value_8hpp.html#ac98ea131ff7d46c66fb80701edaca7ae", null ], 4 | [ "extremeValue", "extreme_value_8hpp.html#a11144426dec05283d6c682e0e532af7e", null ], 5 | [ "extremeValue", "extreme_value_8hpp.html#a1bb8e952d9b4026dc2061dce2600d2b9", null ], 6 | [ "extremeValue", "extreme_value_8hpp.html#abfdd56b9db1a4153d36b9fe09c00e143", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/eye_8hpp.js: -------------------------------------------------------------------------------- 1 | var eye_8hpp = 2 | [ 3 | [ "eye", "eye_8hpp.html#a3c4b6aeeda66831808f80029011f48a7", null ], 4 | [ "eye", "eye_8hpp.html#af94ba88bfd5bddaa20e562f000898918", null ], 5 | [ "eye", "eye_8hpp.html#ab97edf38a4c2d559a5e8824c69b3562a", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/f_8hpp.js: -------------------------------------------------------------------------------- 1 | var f_8hpp = 2 | [ 3 | [ "f", "f_8hpp.html#a2a5de4a9c2f620f56de87c978f8fffc5", null ], 4 | [ "f", "f_8hpp.html#a00229c23da25284daf436c0a338ea25c", null ], 5 | [ "f", "f_8hpp.html#ae8ab9c04a7bbc73b9937d678e564be09", null ], 6 | [ "f", "f_8hpp.html#af5bfd54c6d5d0ad7e16e6e532b0dfb2e", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/factorial_8hpp.js: -------------------------------------------------------------------------------- 1 | var factorial_8hpp = 2 | [ 3 | [ "factorial", "factorial_8hpp.html#af35ca92b4e0779906559c800542c42d0", null ], 4 | [ "factorial", "factorial_8hpp.html#a429b2caa6cf7fcbdba8ce3184c0367e3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/files_dup.js: -------------------------------------------------------------------------------- 1 | var files_dup = 2 | [ 3 | [ "docs", "dir_49e56c817e5e54854c35e136979f97ca.html", "dir_49e56c817e5e54854c35e136979f97ca" ], 4 | [ "include", "dir_d44c64559bbebec7f509842c48db8b23.html", "dir_d44c64559bbebec7f509842c48db8b23" ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fill_corners_8hpp.js: -------------------------------------------------------------------------------- 1 | var fill_corners_8hpp = 2 | [ 3 | [ "fillCorners", "fill_corners_8hpp.html#ac78b1c70b5d7e26d6013674cdb84690a", null ], 4 | [ "fillCorners", "fill_corners_8hpp.html#ac2c4c5858898760f48e5aba06ad0eb3c", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fill_diagnol_8hpp.js: -------------------------------------------------------------------------------- 1 | var fill_diagnol_8hpp = 2 | [ 3 | [ "fillDiagonal", "fill_diagnol_8hpp.html#a7c40717fa80c513ecbb943859d9d1ac2", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/find_8hpp.js: -------------------------------------------------------------------------------- 1 | var find_8hpp = 2 | [ 3 | [ "find", "find_8hpp.html#a93aab9a90a238125a454229f28c4140e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fix_8hpp.js: -------------------------------------------------------------------------------- 1 | var fix_8hpp = 2 | [ 3 | [ "fix", "fix_8hpp.html#acb9c767451a2b00ccf171cd75f6b39ad", null ], 4 | [ "fix", "fix_8hpp.html#af259d081804c4be2d33e3a00e937b79c", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/flatnonzero_8hpp.js: -------------------------------------------------------------------------------- 1 | var flatnonzero_8hpp = 2 | [ 3 | [ "flatnonzero", "flatnonzero_8hpp.html#a5458a0823e113dab7b1fad494196ae39", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/flatten_8hpp.js: -------------------------------------------------------------------------------- 1 | var flatten_8hpp = 2 | [ 3 | [ "flatten", "flatten_8hpp.html#a8a01c7e0a3fe27ba72e106fd50493a71", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/flip_8hpp.js: -------------------------------------------------------------------------------- 1 | var flip_8hpp = 2 | [ 3 | [ "flip", "flip_8hpp.html#ac995fec009d93ce03c4d01eaebac6777", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fliplr_8hpp.js: -------------------------------------------------------------------------------- 1 | var fliplr_8hpp = 2 | [ 3 | [ "fliplr", "fliplr_8hpp.html#ae7e8fa957d0738dd2809980ac9fcb319", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/flipud_8hpp.js: -------------------------------------------------------------------------------- 1 | var flipud_8hpp = 2 | [ 3 | [ "flipud", "flipud_8hpp.html#a80b0beb8f175ed462a4073825c864a43", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/floor_8hpp.js: -------------------------------------------------------------------------------- 1 | var floor_8hpp = 2 | [ 3 | [ "floor", "floor_8hpp.html#a60a455680f2b251fe32aeb5512e987d1", null ], 4 | [ "floor", "floor_8hpp.html#a832da7fc615ea4e1da7bed94a4488ea6", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/floor__divide_8hpp.js: -------------------------------------------------------------------------------- 1 | var floor__divide_8hpp = 2 | [ 3 | [ "floor_divide", "floor__divide_8hpp.html#a9774a32e67a68ebbae6aeba13184b2e1", null ], 4 | [ "floor_divide", "floor__divide_8hpp.html#ae8e2b2ae79d7a56eefd11986a6de9b21", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fmax_8hpp.js: -------------------------------------------------------------------------------- 1 | var fmax_8hpp = 2 | [ 3 | [ "fmax", "fmax_8hpp.html#a74c270817d4d65eb4c9cfd8cab9f4ff9", null ], 4 | [ "fmax", "fmax_8hpp.html#a3f52cf2c34f12f54dd0c89152ffb619e", null ], 5 | [ "fmax", "fmax_8hpp.html#a385b0eb2a2b01a24655c1056efa0904b", null ], 6 | [ "fmax", "fmax_8hpp.html#aebbd1fbc64f00fdeaae6c8cfdf6a7f59", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fmin_8hpp.js: -------------------------------------------------------------------------------- 1 | var fmin_8hpp = 2 | [ 3 | [ "fmin", "fmin_8hpp.html#a02affb98fa19e5830a03582d3a18036c", null ], 4 | [ "fmin", "fmin_8hpp.html#aca598291f86923b1c9df605af7463ea8", null ], 5 | [ "fmin", "fmin_8hpp.html#a049faefb421bb143fb6f07403adf9abf", null ], 6 | [ "fmin", "fmin_8hpp.html#a7cd8e4c771d0676279f506f9d7e949e0", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fmod_8hpp.js: -------------------------------------------------------------------------------- 1 | var fmod_8hpp = 2 | [ 3 | [ "fmod", "fmod_8hpp.html#a31e0d2c99574826098d4a1ac984ca5f8", null ], 4 | [ "fmod", "fmod_8hpp.html#a6894e06b913479ce699cba7dbce5bc93", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/folderclosed.png -------------------------------------------------------------------------------- /docs/doxygen/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/folderopen.png -------------------------------------------------------------------------------- /docs/doxygen/html/frombuffer_8hpp.js: -------------------------------------------------------------------------------- 1 | var frombuffer_8hpp = 2 | [ 3 | [ "frombuffer", "frombuffer_8hpp.html#a692e748bc30b0bf10377ea6b2c983722", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fromfile_8hpp.js: -------------------------------------------------------------------------------- 1 | var fromfile_8hpp = 2 | [ 3 | [ "fromfile", "fromfile_8hpp.html#a4c12ae3a4ece2aec1375c34e1729f512", null ], 4 | [ "fromfile", "fromfile_8hpp.html#a634274f3826c9ed3257964dd1899e38d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fromfunction_8hpp.js: -------------------------------------------------------------------------------- 1 | var fromfunction_8hpp = 2 | [ 3 | [ "fromfunction", "fromfunction_8hpp.html#a37efc58cef8c224d91188515ef8d210c", null ], 4 | [ "fromfunction", "fromfunction_8hpp.html#a2ef1162efdae369c1b303b0d116332d7", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fromiter_8hpp.js: -------------------------------------------------------------------------------- 1 | var fromiter_8hpp = 2 | [ 3 | [ "fromiter", "fromiter_8hpp.html#af37d186203778eb1f732277075e19215", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/fromstring_8hpp.js: -------------------------------------------------------------------------------- 1 | var fromstring_8hpp = 2 | [ 3 | [ "fromstring", "fromstring_8hpp.html#a0b47c92a2523d8ef85fc09e35781fbb9", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/full_8hpp.js: -------------------------------------------------------------------------------- 1 | var full_8hpp = 2 | [ 3 | [ "full", "full_8hpp.html#ab7633ebe1900dc4837531e6f034ac029", null ], 4 | [ "full", "full_8hpp.html#a3199cea21b1c12730260ce79a46adffc", null ], 5 | [ "full", "full_8hpp.html#a2b33c638f680b96132034d3371c3b74c", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/full__like_8hpp.js: -------------------------------------------------------------------------------- 1 | var full__like_8hpp = 2 | [ 3 | [ "full_like", "full__like_8hpp.html#accb9a92155d4c3d688cce08468296947", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gamma1pm1_8hpp.js: -------------------------------------------------------------------------------- 1 | var gamma1pm1_8hpp = 2 | [ 3 | [ "gamma1pm1", "gamma1pm1_8hpp.html#a7b98a5eedb6e5354adbab8dcfe1ce4e1", null ], 4 | [ "gamma1pm1", "gamma1pm1_8hpp.html#a9ea9c889891f9f3a071c786d0b947e20", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gauss__legendre_8hpp.js: -------------------------------------------------------------------------------- 1 | var gauss__legendre_8hpp = 2 | [ 3 | [ "nc::integrate::LegendrePolynomial", "classnc_1_1integrate_1_1_legendre_polynomial.html", "classnc_1_1integrate_1_1_legendre_polynomial" ], 4 | [ "gauss_legendre", "gauss__legendre_8hpp.html#af7d17b4e025bf94f903d3c671da3baf7", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gauss_newton_nlls_8hpp.js: -------------------------------------------------------------------------------- 1 | var gauss_newton_nlls_8hpp = 2 | [ 3 | [ "gaussNewtonNlls", "gauss_newton_nlls_8hpp.html#a9de81d7c677cb58615fba70679e73f66", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gaussian1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var gaussian1d_8hpp = 2 | [ 3 | [ "gaussian1d", "gaussian1d_8hpp.html#a263704ee2cc6ab3f77b462522c7150f8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gaussian_8hpp.js: -------------------------------------------------------------------------------- 1 | var gaussian_8hpp = 2 | [ 3 | [ "gaussian", "gaussian_8hpp.html#a5016e06ac7ca186ff6c110b314d30209", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gaussian_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var gaussian_filter1d_8hpp = 2 | [ 3 | [ "gaussianFilter1d", "gaussian_filter1d_8hpp.html#a03cc5a48e29d6f25636789b65366f243", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gaussian_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var gaussian_filter_8hpp = 2 | [ 3 | [ "gaussianFilter", "gaussian_filter_8hpp.html#ad167f1f3b185f666c70d2e2dc9d21024", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gcd_8hpp.js: -------------------------------------------------------------------------------- 1 | var gcd_8hpp = 2 | [ 3 | [ "gcd", "gcd_8hpp.html#a4a496eaa0a42e0b9c80724358664d432", null ], 4 | [ "gcd", "gcd_8hpp.html#a45b5db91eb9f524459fa3878e23ca0ec", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/generate_centroids_8hpp.js: -------------------------------------------------------------------------------- 1 | var generate_centroids_8hpp = 2 | [ 3 | [ "generateCentroids", "generate_centroids_8hpp.html#a8ee890ada011f590c3351d205636a91c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/generate_threshold_8hpp.js: -------------------------------------------------------------------------------- 1 | var generate_threshold_8hpp = 2 | [ 3 | [ "generateThreshold", "generate_threshold_8hpp.html#a356989d12dda6e1b0748d22d50d4ecaa", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/generator_8hpp.js: -------------------------------------------------------------------------------- 1 | var generator_8hpp = 2 | [ 3 | [ "seed", "generator_8hpp.html#ab7a11b67f4e9e18c7b01c7dc4db2fc71", null ], 4 | [ "generator_", "generator_8hpp.html#aa541047e6b742f1c5251e72f3b7aec95", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/geocentric_radius_8hpp.js: -------------------------------------------------------------------------------- 1 | var geocentric_radius_8hpp = 2 | [ 3 | [ "geocentricRadius", "geocentric_radius_8hpp.html#a3b05413b5dc8368da06449e9ab688b9e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/geocentric_to_l_l_a_8hpp.js: -------------------------------------------------------------------------------- 1 | var geocentric_to_l_l_a_8hpp = 2 | [ 3 | [ "geocentricToLLA", "geocentric_to_l_l_a_8hpp.html#ab32c65e331319ec9f7ea3cecbee9c48e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/geometric_8hpp.js: -------------------------------------------------------------------------------- 1 | var geometric_8hpp = 2 | [ 3 | [ "geometric", "geometric_8hpp.html#a00e92a426d274980951976014f44a0c8", null ], 4 | [ "geometric", "geometric_8hpp.html#a7199f5c06c0e05440e9a97e01930b896", null ], 5 | [ "geometric", "geometric_8hpp.html#ada321053e95eaa700784d397eda6e247", null ], 6 | [ "geometric", "geometric_8hpp.html#ac1ca9eacb56a06f62433997a1338aa6d", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/geomspace_8hpp.js: -------------------------------------------------------------------------------- 1 | var geomspace_8hpp = 2 | [ 3 | [ "geomspace", "geomspace_8hpp.html#a669d2f3d890519e1e8b5020693e56fdb", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/gradient_8hpp.js: -------------------------------------------------------------------------------- 1 | var gradient_8hpp = 2 | [ 3 | [ "gradient", "gradient_8hpp.html#acd531e597e05821b01747a0ae3b096b7", null ], 4 | [ "gradient", "gradient_8hpp.html#ad833b82535ebdbb6043df6462c4a0ddd", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/greater_8hpp.js: -------------------------------------------------------------------------------- 1 | var greater_8hpp = 2 | [ 3 | [ "greater", "greater_8hpp.html#a5a3294d00ff310b4d95b0292adafc94f", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/greater__equal_8hpp.js: -------------------------------------------------------------------------------- 1 | var greater__equal_8hpp = 2 | [ 3 | [ "greater_equal", "greater__equal_8hpp.html#a6ecdbcd9d151ddda0b7b4f51f29bf08c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/hamming_8hpp.js: -------------------------------------------------------------------------------- 1 | var hamming_8hpp = 2 | [ 3 | [ "hamming", "hamming_8hpp.html#a7c74f200b79212768ca974ae2af6a249", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/hanning_8hpp.js: -------------------------------------------------------------------------------- 1 | var hanning_8hpp = 2 | [ 3 | [ "hanning", "hanning_8hpp.html#a118a8a728566b57cf3000d6f0bc8c0ca", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/hat_8hpp.js: -------------------------------------------------------------------------------- 1 | var hat_8hpp = 2 | [ 3 | [ "hat", "hat_8hpp.html#ad93ac021edcd0c8f81891c93996dee25", null ], 4 | [ "hat", "hat_8hpp.html#af55949f0049c2a7b1a3e1f36a31a678f", null ], 5 | [ "hat", "hat_8hpp.html#afa7cc2a8a4084e94b4af00484d3a511e", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/hermite_8hpp.js: -------------------------------------------------------------------------------- 1 | var hermite_8hpp = 2 | [ 3 | [ "hermite", "hermite_8hpp.html#ade1c7e2792babf10bfaa60ff14156c12", null ], 4 | [ "hermite", "hermite_8hpp.html#aeea1ebbc592a6a8c533f2230fb0f6f10", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/histogram_8hpp.js: -------------------------------------------------------------------------------- 1 | var histogram_8hpp = 2 | [ 3 | [ "histogram", "histogram_8hpp.html#abcfc0394917cd12eae1bde686895e66d", null ], 4 | [ "histogram", "histogram_8hpp.html#a49ca5ca0de10a6321946fb1f41e39ed3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/hsplit_8hpp.js: -------------------------------------------------------------------------------- 1 | var hsplit_8hpp = 2 | [ 3 | [ "hsplit", "hsplit_8hpp.html#a1141544c6f1d2fca531612f726123e48", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/hstack_8hpp.js: -------------------------------------------------------------------------------- 1 | var hstack_8hpp = 2 | [ 3 | [ "hstack", "hstack_8hpp.html#aa5a0927210f0193fd7bbe40dc889b562", null ], 4 | [ "hstack", "hstack_8hpp.html#a0a3a8a6738b0bf84212a0389db201863", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/hypot_8hpp.js: -------------------------------------------------------------------------------- 1 | var hypot_8hpp = 2 | [ 3 | [ "hypot", "hypot_8hpp.html#ab847598f9e2e08106edd8c6ae3fa2f7a", null ], 4 | [ "hypot", "hypot_8hpp.html#a142bd95cc364924602eedeb78a979aa0", null ], 5 | [ "hypot", "hypot_8hpp.html#a4648674053cd83851d9549bbcc7a8481", null ], 6 | [ "hypot", "hypot_8hpp.html#ad2d90c3dcbe0a1e652b0505b637d973a", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/identity_8hpp.js: -------------------------------------------------------------------------------- 1 | var identity_8hpp = 2 | [ 3 | [ "identity", "identity_8hpp.html#aea46d348533846c6dce21cfc7dd48b9b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/imag_8hpp.js: -------------------------------------------------------------------------------- 1 | var imag_8hpp = 2 | [ 3 | [ "imag", "imag_8hpp.html#a1c2600aad1e40996f4ba6c0dd981c3c9", null ], 4 | [ "imag", "imag_8hpp.html#a12cdcae89058ab627b68d32bc9ce0666", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/inner_8hpp.js: -------------------------------------------------------------------------------- 1 | var inner_8hpp = 2 | [ 3 | [ "inner", "inner_8hpp.html#aa44cb1f69e57caf4a79ff92960ddaebd", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/intersect1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var intersect1d_8hpp = 2 | [ 3 | [ "intersect1d", "intersect1d_8hpp.html#a35cdd4bb265142ff795a9990ed42a5c0", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/inv_8hpp.js: -------------------------------------------------------------------------------- 1 | var inv_8hpp = 2 | [ 3 | [ "inv", "inv_8hpp.html#a2eeb58d0a34e50e79fcfe59f71c61b4d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/invert_8hpp.js: -------------------------------------------------------------------------------- 1 | var invert_8hpp = 2 | [ 3 | [ "invert", "invert_8hpp.html#ac3b291f1a3eb0042fcf73671cdde3cbc", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/isclose_8hpp.js: -------------------------------------------------------------------------------- 1 | var isclose_8hpp = 2 | [ 3 | [ "isclose", "isclose_8hpp.html#a81969bd9383c15d95e6b2150dac1eda5", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/isinf_8hpp.js: -------------------------------------------------------------------------------- 1 | var isinf_8hpp = 2 | [ 3 | [ "isinf", "isinf_8hpp.html#a1a94a76a63d77e13fddf0cfbad1fd562", null ], 4 | [ "isinf", "isinf_8hpp.html#ac2770d614de64c300c2f10cb39a299c0", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/isnan_8hpp.js: -------------------------------------------------------------------------------- 1 | var isnan_8hpp = 2 | [ 3 | [ "isnan", "isnan_8hpp.html#a5f22d549d66717d09107559ea35b801a", null ], 4 | [ "isnan", "isnan_8hpp.html#ac28569da874c0b37a4c50c86b31a98ab", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/isneginf_8hpp.js: -------------------------------------------------------------------------------- 1 | var isneginf_8hpp = 2 | [ 3 | [ "isneginf", "isneginf_8hpp.html#abb7321e4da99b273ff4736c5b19b32f7", null ], 4 | [ "isneginf", "isneginf_8hpp.html#abb8e6e08f1b4374017ef8e4cd1841ba6", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/isposinf_8hpp.js: -------------------------------------------------------------------------------- 1 | var isposinf_8hpp = 2 | [ 3 | [ "isposinf", "isposinf_8hpp.html#a0e89470783b4671ba4e360fb318d49ba", null ], 4 | [ "isposinf", "isposinf_8hpp.html#a7229b43ce1e19fb560d461b6beda24af", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/kaiser_8hpp.js: -------------------------------------------------------------------------------- 1 | var kaiser_8hpp = 2 | [ 3 | [ "kaiser", "kaiser_8hpp.html#a8b94f018199937d1e51b23b93a100c7d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/laguerre_8hpp.js: -------------------------------------------------------------------------------- 1 | var laguerre_8hpp = 2 | [ 3 | [ "laguerre", "laguerre_8hpp.html#a0b1fe04e7cc91218dfea6fb27e819f23", null ], 4 | [ "laguerre", "laguerre_8hpp.html#aa2c08952d8dfd2cccfbcd6da40b49f4f", null ], 5 | [ "laguerre", "laguerre_8hpp.html#a1632161584f56e87ee9be46a43bdaadf", null ], 6 | [ "laguerre", "laguerre_8hpp.html#ad7fef1e52b0054b5894995ee1ed94340", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/lcm_8hpp.js: -------------------------------------------------------------------------------- 1 | var lcm_8hpp = 2 | [ 3 | [ "lcm", "lcm_8hpp.html#aa69cf791720987deb546d71057a668a1", null ], 4 | [ "lcm", "lcm_8hpp.html#a7ffd0c15b8419a5d84458d4009b38b88", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ldexp_8hpp.js: -------------------------------------------------------------------------------- 1 | var ldexp_8hpp = 2 | [ 3 | [ "ldexp", "ldexp_8hpp.html#af63d2ed4015f416db1734593d322941a", null ], 4 | [ "ldexp", "ldexp_8hpp.html#aca805ef0273314ddc6c70b2c913bf485", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/left__shift_8hpp.js: -------------------------------------------------------------------------------- 1 | var left__shift_8hpp = 2 | [ 3 | [ "left_shift", "left__shift_8hpp.html#abeea32ab9bfa1e127ceb91c0538d6cb6", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/legendre__p_8hpp.js: -------------------------------------------------------------------------------- 1 | var legendre__p_8hpp = 2 | [ 3 | [ "legendre_p", "legendre__p_8hpp.html#a8ff11a959ecbfc4caf01f35cbc87420a", null ], 4 | [ "legendre_p", "legendre__p_8hpp.html#a6a68bde646dae6ffb484502d54e5c175", null ], 5 | [ "legendre_p", "legendre__p_8hpp.html#a9969335ebe0c26ff10af77007fcce5bc", null ], 6 | [ "legendre_p", "legendre__p_8hpp.html#a567bdffcff63421b77a9dfae9cbdfc8a", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/legendre__q_8hpp.js: -------------------------------------------------------------------------------- 1 | var legendre__q_8hpp = 2 | [ 3 | [ "legendre_q", "legendre__q_8hpp.html#a00bc3047baef4182addac153f2b2c1a9", null ], 4 | [ "legendre_q", "legendre__q_8hpp.html#a78897e159974d6732b77759be2f2da13", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/less_8hpp.js: -------------------------------------------------------------------------------- 1 | var less_8hpp = 2 | [ 3 | [ "less", "less_8hpp.html#a214ff1cf329d515457a611f0be8e9bd8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/less__equal_8hpp.js: -------------------------------------------------------------------------------- 1 | var less__equal_8hpp = 2 | [ 3 | [ "less_equal", "less__equal_8hpp.html#a052d0b4471adf86a70d91430ccb4873d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/linspace_8hpp.js: -------------------------------------------------------------------------------- 1 | var linspace_8hpp = 2 | [ 3 | [ "linspace", "linspace_8hpp.html#a6d8333f2bb5e655f0317644d61fab51b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/load_8hpp.js: -------------------------------------------------------------------------------- 1 | var load_8hpp = 2 | [ 3 | [ "load", "load_8hpp.html#ad6129b92b4e017a4ca772a59b43960e8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/log10_8hpp.js: -------------------------------------------------------------------------------- 1 | var log10_8hpp = 2 | [ 3 | [ "log10", "log10_8hpp.html#a3cd82f65b6ee069a7d6443646dfecf67", null ], 4 | [ "log10", "log10_8hpp.html#a0d8a5ffeaed868463a6e55645c625c8f", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/log1p_8hpp.js: -------------------------------------------------------------------------------- 1 | var log1p_8hpp = 2 | [ 3 | [ "log1p", "log1p_8hpp.html#a1ae30700a2db1cd8e44fa59b84c2b547", null ], 4 | [ "log1p", "log1p_8hpp.html#a5abcc8523a49a47fd2224d5588f128b4", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/log2_8hpp.js: -------------------------------------------------------------------------------- 1 | var log2_8hpp = 2 | [ 3 | [ "log2", "log2_8hpp.html#a536e5046481a32bd6955a222f323393a", null ], 4 | [ "log2", "log2_8hpp.html#a48cbc16dc706678b6f85e655e935cd41", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/log_8hpp.js: -------------------------------------------------------------------------------- 1 | var log_8hpp = 2 | [ 3 | [ "log", "log_8hpp.html#aba925957229bf54bfe854be197cd3d52", null ], 4 | [ "log", "log_8hpp.html#a3f08d373ae167ac90d3bb6b6c4da0fb9", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/log__gamma_8hpp.js: -------------------------------------------------------------------------------- 1 | var log__gamma_8hpp = 2 | [ 3 | [ "log_gamma", "log__gamma_8hpp.html#addebe777849a11f027a793975a53b653", null ], 4 | [ "log_gamma", "log__gamma_8hpp.html#a11ec3d4677a53eafd8b0144cd6e42ce3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logaddexp2_8hpp.js: -------------------------------------------------------------------------------- 1 | var logaddexp2_8hpp = 2 | [ 3 | [ "logaddexp2", "logaddexp2_8hpp.html#a3e9f3a1d30bf2d5f83c8120680dea2a0", null ], 4 | [ "logaddexp2", "logaddexp2_8hpp.html#add38cc125a3fa63eae0b05b7b5ce7a0d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logaddexp_8hpp.js: -------------------------------------------------------------------------------- 1 | var logaddexp_8hpp = 2 | [ 3 | [ "logaddexp", "logaddexp_8hpp.html#ac60d3d4fe17610d6a44540167505c501", null ], 4 | [ "logaddexp", "logaddexp_8hpp.html#a7de2328d3bd73c573be949fed7c9057a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logb_8hpp.js: -------------------------------------------------------------------------------- 1 | var logb_8hpp = 2 | [ 3 | [ "logb", "logb_8hpp.html#a512c632dd9629cbc02ad96398f82ab2a", null ], 4 | [ "logb", "logb_8hpp.html#a4925bc774ee8c671be4e15ba4305d230", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logical__and_8hpp.js: -------------------------------------------------------------------------------- 1 | var logical__and_8hpp = 2 | [ 3 | [ "logical_and", "logical__and_8hpp.html#a453e2ee3176ab6e44183872ff41a60e2", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logical__not_8hpp.js: -------------------------------------------------------------------------------- 1 | var logical__not_8hpp = 2 | [ 3 | [ "logical_not", "logical__not_8hpp.html#a63cf55809c7f46ece3106108a65f8e3a", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logical__or_8hpp.js: -------------------------------------------------------------------------------- 1 | var logical__or_8hpp = 2 | [ 3 | [ "logical_or", "logical__or_8hpp.html#a62d069e9c46eda68c15946a3fa74b1ab", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logical__xor_8hpp.js: -------------------------------------------------------------------------------- 1 | var logical__xor_8hpp = 2 | [ 3 | [ "logical_xor", "logical__xor_8hpp.html#aae5c773c4e480fc760781013a8def13d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/lognormal_8hpp.js: -------------------------------------------------------------------------------- 1 | var lognormal_8hpp = 2 | [ 3 | [ "lognormal", "lognormal_8hpp.html#a4373dc28e42b40a6d65accb8c5f5248e", null ], 4 | [ "lognormal", "lognormal_8hpp.html#a03d5528a3a97b3731210ba2cc5d1c75d", null ], 5 | [ "lognormal", "lognormal_8hpp.html#aa4810e51158c9385d80b93230b92a043", null ], 6 | [ "lognormal", "lognormal_8hpp.html#aefb6e46b202083c2a279a8ae009af02c", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/logspace_8hpp.js: -------------------------------------------------------------------------------- 1 | var logspace_8hpp = 2 | [ 3 | [ "logspace", "logspace_8hpp.html#af30d297f088e3b9356cdba5cb76e70cc", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/lstsq_8hpp.js: -------------------------------------------------------------------------------- 1 | var lstsq_8hpp = 2 | [ 3 | [ "lstsq", "lstsq_8hpp.html#a8baf25f50874e4bd27d2644a2730fb03", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/lu__decomposition_8hpp.js: -------------------------------------------------------------------------------- 1 | var lu__decomposition_8hpp = 2 | [ 3 | [ "lu_decomposition", "lu__decomposition_8hpp.html#a60e7cebe243cc88b69d508b569456300", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/matmul_8hpp.js: -------------------------------------------------------------------------------- 1 | var matmul_8hpp = 2 | [ 3 | [ "matmul", "matmul_8hpp.html#a666207bcb1e7fe5993aa707cfd8b1f50", null ], 4 | [ "matmul", "matmul_8hpp.html#a2641ebcbac9389cb1637a2ca85baa8d5", null ], 5 | [ "matmul", "matmul_8hpp.html#a225e40b104aeec5dcee81e4d7ff5089f", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/matrix__power_8hpp.js: -------------------------------------------------------------------------------- 1 | var matrix__power_8hpp = 2 | [ 3 | [ "matrix_power", "matrix__power_8hpp.html#a59c33bf492f64017c673a151f890dcbf", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/max_8hpp.js: -------------------------------------------------------------------------------- 1 | var max_8hpp = 2 | [ 3 | [ "max", "max_8hpp.html#af37a6766f3bd9a7f83d32834d2a699b1", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/maximum_8hpp.js: -------------------------------------------------------------------------------- 1 | var maximum_8hpp = 2 | [ 3 | [ "maximum", "maximum_8hpp.html#a6afee2f93049b146b31b4b3d58e34d98", null ], 4 | [ "maximum", "maximum_8hpp.html#a1cc8c0c7b70042bf0cde7889e8ab6559", null ], 5 | [ "maximum", "maximum_8hpp.html#a2020a56b0977393a81377f4b64d62252", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/maximum_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var maximum_filter1d_8hpp = 2 | [ 3 | [ "maximumFilter1d", "maximum_filter1d_8hpp.html#a3a38656bef30277181e8377066a15849", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/maximum_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var maximum_filter_8hpp = 2 | [ 3 | [ "maximumFilter", "maximum_filter_8hpp.html#a998f7c3ef568195b9281e3219f3f983e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/mean_8hpp.js: -------------------------------------------------------------------------------- 1 | var mean_8hpp = 2 | [ 3 | [ "mean", "mean_8hpp.html#a2740b304fc854a6595195dafcf3dcf89", null ], 4 | [ "mean", "mean_8hpp.html#a460a2152074d0199190d624122895ef1", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/mean_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var mean_filter1d_8hpp = 2 | [ 3 | [ "meanFilter1d", "mean_filter1d_8hpp.html#a8aa5f54202058dc025ef2913bcf41ea2", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/mean_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var mean_filter_8hpp = 2 | [ 3 | [ "meanFilter", "mean_filter_8hpp.html#a9ba0f4726d2e815293b7975496516f51", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/median_8hpp.js: -------------------------------------------------------------------------------- 1 | var median_8hpp = 2 | [ 3 | [ "median", "median_8hpp.html#acd5776d163f5b1cab7eac5f6e5e941d9", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/median_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var median_filter1d_8hpp = 2 | [ 3 | [ "medianFilter1d", "median_filter1d_8hpp.html#ab248bc3704fcde26c518a092724fd826", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/median_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var median_filter_8hpp = 2 | [ 3 | [ "medianFilter", "median_filter_8hpp.html#a95757a16eed25316be6e6a5c9ca4156a", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/meshgrid_8hpp.js: -------------------------------------------------------------------------------- 1 | var meshgrid_8hpp = 2 | [ 3 | [ "meshgrid", "meshgrid_8hpp.html#a3b90252edfc01db0083b381c75b1cedd", null ], 4 | [ "meshgrid", "meshgrid_8hpp.html#aac955485b4f9e5ac8ad304a7234c5c4a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/min_8hpp.js: -------------------------------------------------------------------------------- 1 | var min_8hpp = 2 | [ 3 | [ "min", "min_8hpp.html#a10ee4cd59b844c5dd99106a5dee12009", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/minimum_8hpp.js: -------------------------------------------------------------------------------- 1 | var minimum_8hpp = 2 | [ 3 | [ "minimum", "minimum_8hpp.html#a291c76b1591dc673d55df420f5b1eca1", null ], 4 | [ "minimum", "minimum_8hpp.html#a1ef4a27aec9b7d2e67d27ca1dde82e1a", null ], 5 | [ "minimum", "minimum_8hpp.html#a36c2bae02fa93658d5f9268018de444f", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/minimum_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var minimum_filter1d_8hpp = 2 | [ 3 | [ "minumumFilter1d", "minimum_filter1d_8hpp.html#a199c5c6c2c9b94f6f98f1a4b68f1fc75", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/minimum_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var minimum_filter_8hpp = 2 | [ 3 | [ "minimumFilter", "minimum_filter_8hpp.html#acb20cc1171cb1a4dd83b8f77de33a906", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/mirror1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var mirror1d_8hpp = 2 | [ 3 | [ "mirror1d", "mirror1d_8hpp.html#a4635795ab092ee3e922638766b1b3fa2", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/mirror2d_8hpp.js: -------------------------------------------------------------------------------- 1 | var mirror2d_8hpp = 2 | [ 3 | [ "mirror2d", "mirror2d_8hpp.html#a6fc6bbc2d81a616a08b183c8a8cb2080", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/mod_8hpp.js: -------------------------------------------------------------------------------- 1 | var mod_8hpp = 2 | [ 3 | [ "mod", "mod_8hpp.html#afeea794af5fd07c9ce88cdabab63ae53", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/multi__dot_8hpp.js: -------------------------------------------------------------------------------- 1 | var multi__dot_8hpp = 2 | [ 3 | [ "multi_dot", "multi__dot_8hpp.html#a46188c640b2c3ee74418db676e8f3bce", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/namespacenc_1_1filesystem.js: -------------------------------------------------------------------------------- 1 | var namespacenc_1_1filesystem = 2 | [ 3 | [ "File", "classnc_1_1filesystem_1_1_file.html", "classnc_1_1filesystem_1_1_file" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/namespacenc_1_1utils_1_1timeit__detail.js: -------------------------------------------------------------------------------- 1 | var namespacenc_1_1utils_1_1timeit__detail = 2 | [ 3 | [ "Result", "structnc_1_1utils_1_1timeit__detail_1_1_result.html", "structnc_1_1utils_1_1timeit__detail_1_1_result" ], 4 | [ "operator<<", "namespacenc_1_1utils_1_1timeit__detail.html#ae0e45f81e262bd1190cfda3a2bd3a1c8", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/namespaces_dup.js: -------------------------------------------------------------------------------- 1 | var namespaces_dup = 2 | [ 3 | [ "nc", "namespacenc.html", "namespacenc" ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nan__to__num_8hpp.js: -------------------------------------------------------------------------------- 1 | var nan__to__num_8hpp = 2 | [ 3 | [ "nan_to_num", "nan__to__num_8hpp.html#ac63ca63d5c482becc22400a4c6b1e0ce", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanargmax_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanargmax_8hpp = 2 | [ 3 | [ "nanargmax", "nanargmax_8hpp.html#a66db1ea4693a3237b28a0c375b6d669e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanargmin_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanargmin_8hpp = 2 | [ 3 | [ "nanargmin", "nanargmin_8hpp.html#a407ce86c3f6d3ad060253dab6360923f", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nancumprod_8hpp.js: -------------------------------------------------------------------------------- 1 | var nancumprod_8hpp = 2 | [ 3 | [ "nancumprod", "nancumprod_8hpp.html#a89c37418f347d9515ed3f0718181f6a2", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nancumsum_8hpp.js: -------------------------------------------------------------------------------- 1 | var nancumsum_8hpp = 2 | [ 3 | [ "nancumsum", "nancumsum_8hpp.html#af1ea80fe46bbf43498a55efc1ed52523", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanmax_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanmax_8hpp = 2 | [ 3 | [ "nanmax", "nanmax_8hpp.html#ad1e3d860c12f8b5f63be420d7b4d4c37", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanmean_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanmean_8hpp = 2 | [ 3 | [ "nanmean", "nanmean_8hpp.html#ad2e1dc950c29ffe7c9dc38126043b052", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanmedian_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanmedian_8hpp = 2 | [ 3 | [ "nanmedian", "nanmedian_8hpp.html#aef0be387bdce31db20a82833327e0720", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanmin_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanmin_8hpp = 2 | [ 3 | [ "nanmin", "nanmin_8hpp.html#a77f60d5bd907506cfebc9eb1d29020dc", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanpercentile_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanpercentile_8hpp = 2 | [ 3 | [ "nanpercentile", "nanpercentile_8hpp.html#a2d91c6e40be2c2599b14998594f51d73", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanprod_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanprod_8hpp = 2 | [ 3 | [ "nanprod", "nanprod_8hpp.html#a859c4c094d75de63f0aede46f07c2003", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nans_8hpp.js: -------------------------------------------------------------------------------- 1 | var nans_8hpp = 2 | [ 3 | [ "nans", "nans_8hpp.html#aaa10279251421be9d9ba61c88b65c090", null ], 4 | [ "nans", "nans_8hpp.html#a8cf5fb70a05a4d7b146807aabf3cf93b", null ], 5 | [ "nans", "nans_8hpp.html#a7fe697a62b8317499283141a0ccaa262", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nans__like_8hpp.js: -------------------------------------------------------------------------------- 1 | var nans__like_8hpp = 2 | [ 3 | [ "nans_like", "nans__like_8hpp.html#a0fe475cc81ae3df67f77c4080c67dda7", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanstdev_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanstdev_8hpp = 2 | [ 3 | [ "nanstdev", "nanstdev_8hpp.html#a07242d05ac9b13b84db6ff09b646e6c5", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nansum_8hpp.js: -------------------------------------------------------------------------------- 1 | var nansum_8hpp = 2 | [ 3 | [ "nansum", "nansum_8hpp.html#a52f5865474ba609fb489e395809c9850", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nanvar_8hpp.js: -------------------------------------------------------------------------------- 1 | var nanvar_8hpp = 2 | [ 3 | [ "nanvar", "nanvar_8hpp.html#a63de664afff4733cc1d166d22b18bcb4", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/nav_f.png -------------------------------------------------------------------------------- /docs/doxygen/html/nav_fd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/nav_fd.png -------------------------------------------------------------------------------- /docs/doxygen/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/nav_g.png -------------------------------------------------------------------------------- /docs/doxygen/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/nav_h.png -------------------------------------------------------------------------------- /docs/doxygen/html/nav_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/nav_hd.png -------------------------------------------------------------------------------- /docs/doxygen/html/nbytes_8hpp.js: -------------------------------------------------------------------------------- 1 | var nbytes_8hpp = 2 | [ 3 | [ "nbytes", "nbytes_8hpp.html#a66464387c8d92793b5355e2afd107cbc", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nearest1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var nearest1d_8hpp = 2 | [ 3 | [ "nearest1d", "nearest1d_8hpp.html#acf2a5a1220056ad35588cb8e84b9b8cb", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nearest2d_8hpp.js: -------------------------------------------------------------------------------- 1 | var nearest2d_8hpp = 2 | [ 3 | [ "nearest2d", "nearest2d_8hpp.html#a4072e9666cfeff9a09957eeb9521f8a8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/negative_8hpp.js: -------------------------------------------------------------------------------- 1 | var negative_8hpp = 2 | [ 3 | [ "negative", "negative_8hpp.html#a8c0a787ec1e23b0933b1a1bd3b71f9d7", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/negative_binomial_8hpp.js: -------------------------------------------------------------------------------- 1 | var negative_binomial_8hpp = 2 | [ 3 | [ "negativeBinomial", "negative_binomial_8hpp.html#a57ae1ebdfbe61e38c914f076e5594d0e", null ], 4 | [ "negativeBinomial", "negative_binomial_8hpp.html#a1a15a08fe9134f5dcf5e7b32eb1de5e2", null ], 5 | [ "negativeBinomial", "negative_binomial_8hpp.html#a8ccb4eb9df8dd0739d2001ee2e2128f2", null ], 6 | [ "negativeBinomial", "negative_binomial_8hpp.html#ad2c544f8bd09a4e0458c75a4abcb1283", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/newbyteorder_8hpp.js: -------------------------------------------------------------------------------- 1 | var newbyteorder_8hpp = 2 | [ 3 | [ "newbyteorder", "newbyteorder_8hpp.html#a44656e6f55718f92f0b7ba6e45ac2ee3", null ], 4 | [ "newbyteorder", "newbyteorder_8hpp.html#a4d2ae51817f2acee83e2df0e04a8bac5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/none_8hpp.js: -------------------------------------------------------------------------------- 1 | var none_8hpp = 2 | [ 3 | [ "none", "none_8hpp.html#ac4e2b389aad16ef62c9807ad246d6c96", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nonzero_8hpp.js: -------------------------------------------------------------------------------- 1 | var nonzero_8hpp = 2 | [ 3 | [ "nonzero", "nonzero_8hpp.html#a291d0ac850232def29be8cc885fd0053", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/norm_8hpp.js: -------------------------------------------------------------------------------- 1 | var norm_8hpp = 2 | [ 3 | [ "norm", "norm_8hpp.html#a2b54e033925bd40ebddd4bd30929c1b7", null ], 4 | [ "norm", "norm_8hpp.html#a95b39a38a98986f81650168075d642d3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/normal_8hpp.js: -------------------------------------------------------------------------------- 1 | var normal_8hpp = 2 | [ 3 | [ "normal", "normal_8hpp.html#a9a1710d76204af5e4fdfed8b38a4e156", null ], 4 | [ "normal", "normal_8hpp.html#a0d52ff6ccaa63bc36348ba39e5936056", null ], 5 | [ "normal", "normal_8hpp.html#a70a4ef7d4a254d78a7c7e4b5dc6e9d49", null ], 6 | [ "normal", "normal_8hpp.html#aa966afc1b449a56ab20c21cd70d9fa1f", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/normalize_8hpp.js: -------------------------------------------------------------------------------- 1 | var normalize_8hpp = 2 | [ 3 | [ "normalize", "normalize_8hpp.html#abd578fbf1c44e80070d5140e0d10af49", null ], 4 | [ "normalize", "normalize_8hpp.html#a87346fb264aaff0c12adf69d3b56ac59", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/not__equal_8hpp.js: -------------------------------------------------------------------------------- 1 | var not__equal_8hpp = 2 | [ 3 | [ "not_equal", "not__equal_8hpp.html#a05f56f872438107587c8dea69950cf25", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/nth__root_8hpp.js: -------------------------------------------------------------------------------- 1 | var nth__root_8hpp = 2 | [ 3 | [ "nth_root", "nth__root_8hpp.html#a9c92991f946446207758c3b2f1a7d9d3", null ], 4 | [ "nth_root", "nth__root_8hpp.html#aae5eb97b7313026b451ac4d7c01db027", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/num2str_8hpp.js: -------------------------------------------------------------------------------- 1 | var num2str_8hpp = 2 | [ 3 | [ "num2str", "num2str_8hpp.html#a16a6ad93c420ed7a003d9921bee1a7c6", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ones_8hpp.js: -------------------------------------------------------------------------------- 1 | var ones_8hpp = 2 | [ 3 | [ "ones", "ones_8hpp.html#afaade762c0f852fc3bc6558a140024d6", null ], 4 | [ "ones", "ones_8hpp.html#a4077a3023a6dca0ec146844925313fc9", null ], 5 | [ "ones", "ones_8hpp.html#a1ec10d595929f57dc04559db28b6b276", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ones__like_8hpp.js: -------------------------------------------------------------------------------- 1 | var ones__like_8hpp = 2 | [ 3 | [ "ones_like", "ones__like_8hpp.html#addf0589f1f5b9fc8e926447a555b57b6", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/open.png -------------------------------------------------------------------------------- /docs/doxygen/html/outer_8hpp.js: -------------------------------------------------------------------------------- 1 | var outer_8hpp = 2 | [ 3 | [ "outer", "outer_8hpp.html#a353e0426a7f482dce2ca0dcdc2292c11", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/packbits_8hpp.js: -------------------------------------------------------------------------------- 1 | var packbits_8hpp = 2 | [ 3 | [ "packbitsBigEndian", "packbits_8hpp.html#a447e9d3e8e901686b33bbfab8aa8ca20", null ], 4 | [ "packbitsLittleEndian", "packbits_8hpp.html#a7067b2b1095d5a094a1f4287888819f8", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/pad_8hpp.js: -------------------------------------------------------------------------------- 1 | var pad_8hpp = 2 | [ 3 | [ "pad", "pad_8hpp.html#a8c8e42bbbbb509664e1a7ee3c4641e6e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/partition_8hpp.js: -------------------------------------------------------------------------------- 1 | var partition_8hpp = 2 | [ 3 | [ "partition", "partition_8hpp.html#ae8625a7837cbbe94256235e8599c1493", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/percentile_8hpp.js: -------------------------------------------------------------------------------- 1 | var percentile_8hpp = 2 | [ 3 | [ "percentile", "percentile_8hpp.html#a8b0da1d66e6d238a4deb3f6e0a0f3cd2", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/percentile_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var percentile_filter1d_8hpp = 2 | [ 3 | [ "percentileFilter1d", "percentile_filter1d_8hpp.html#a9c50b34b16623a2d5dd6eeff52140fc5", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/percentile_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var percentile_filter_8hpp = 2 | [ 3 | [ "percentileFilter", "percentile_filter_8hpp.html#a959517807754ccd63988554eb7898922", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/permutation_8hpp.js: -------------------------------------------------------------------------------- 1 | var permutation_8hpp = 2 | [ 3 | [ "permutation", "permutation_8hpp.html#aa2ec0842c315e125d50c6af81007a389", null ], 4 | [ "permutation", "permutation_8hpp.html#a89b35742889ecffb90cb6497cd1cb265", null ], 5 | [ "permutation", "permutation_8hpp.html#a289c78de5afe93abbd471fa493ef2216", null ], 6 | [ "permutation", "permutation_8hpp.html#a07bf092c354cabb8b995f1f4beb81582", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/pinv_8hpp.js: -------------------------------------------------------------------------------- 1 | var pinv_8hpp = 2 | [ 3 | [ "pinv", "pinv_8hpp.html#a1ab0529b2e6d2bd4668051b8b7dcb85b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/pivot_l_u__decomposition_8hpp.js: -------------------------------------------------------------------------------- 1 | var pivot_l_u__decomposition_8hpp = 2 | [ 3 | [ "pivotLU_decomposition", "pivot_l_u__decomposition_8hpp.html#a7e29068f07fa422d6c9185a4d91bf6a2", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/place_8hpp.js: -------------------------------------------------------------------------------- 1 | var place_8hpp = 2 | [ 3 | [ "place", "place_8hpp.html#a171da00c79cfbc9500916b6ac4d3de70", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/pnr_8hpp.js: -------------------------------------------------------------------------------- 1 | var pnr_8hpp = 2 | [ 3 | [ "pnr", "pnr_8hpp.html#ab52643e0c6a859c47871094023c834b5", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/poisson_8hpp.js: -------------------------------------------------------------------------------- 1 | var poisson_8hpp = 2 | [ 3 | [ "poisson", "poisson_8hpp.html#a0818ee6f61baf994f13a513f70fd0840", null ], 4 | [ "poisson", "poisson_8hpp.html#ae18029c16ca489ea9db6331c609b20e8", null ], 5 | [ "poisson", "poisson_8hpp.html#a9e402d65304589f2792021f031836430", null ], 6 | [ "poisson", "poisson_8hpp.html#a7899dfcd192eda5c8318ebe2f8d5bb41", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/polar_8hpp.js: -------------------------------------------------------------------------------- 1 | var polar_8hpp = 2 | [ 3 | [ "polar", "polar_8hpp.html#a4f674e5cab66c911b212a5eae86a641b", null ], 4 | [ "polar", "polar_8hpp.html#abbf3200fe11e4cb7ae6363b00099c2fe", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/polygamma_8hpp.js: -------------------------------------------------------------------------------- 1 | var polygamma_8hpp = 2 | [ 3 | [ "polygamma", "polygamma_8hpp.html#a1aab975128b9cfbd175699a9587b34d0", null ], 4 | [ "polygamma", "polygamma_8hpp.html#a132b29cd86870cdd360652baeb54c663", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/prime_8hpp.js: -------------------------------------------------------------------------------- 1 | var prime_8hpp = 2 | [ 3 | [ "prime", "prime_8hpp.html#a85113d7e84f6acfe8503d1b791829f58", null ], 4 | [ "prime", "prime_8hpp.html#a2e0b9f447fd033ac62a0dfe3eadb46cd", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/print_8hpp.js: -------------------------------------------------------------------------------- 1 | var print_8hpp = 2 | [ 3 | [ "print", "print_8hpp.html#aad1fad7ba0ba94b118bdceb29178488b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/prod_8hpp.js: -------------------------------------------------------------------------------- 1 | var prod_8hpp = 2 | [ 3 | [ "prod", "prod_8hpp.html#a95bb3d05b242ffc63a4d5c9742e64c7d", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/proj_8hpp.js: -------------------------------------------------------------------------------- 1 | var proj_8hpp = 2 | [ 3 | [ "proj", "proj_8hpp.html#a8a79d6cf4375da1cd18af26bf24356c8", null ], 4 | [ "proj", "proj_8hpp.html#a645f790a7dfb01c78317ff23e000db52", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ptp_8hpp.js: -------------------------------------------------------------------------------- 1 | var ptp_8hpp = 2 | [ 3 | [ "ptp", "ptp_8hpp.html#af42505ac3f2610d1fe9779bf97d89215", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/putmask_8hpp.js: -------------------------------------------------------------------------------- 1 | var putmask_8hpp = 2 | [ 3 | [ "putmask", "putmask_8hpp.html#a024bd17e5b9f66ea7bb757a162be375d", null ], 4 | [ "putmask", "putmask_8hpp.html#a067d9482aba483287169730b7d42ae0e", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rad2deg_8hpp.js: -------------------------------------------------------------------------------- 1 | var rad2deg_8hpp = 2 | [ 3 | [ "rad2deg", "rad2deg_8hpp.html#a19a21c68cb53309ac33e9c1a7b5d2513", null ], 4 | [ "rad2deg", "rad2deg_8hpp.html#a8c8fc041b633785104c583a8ce3d9cef", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/radian_seperation_8hpp.js: -------------------------------------------------------------------------------- 1 | var radian_seperation_8hpp = 2 | [ 3 | [ "radianSeperation", "radian_seperation_8hpp.html#aa009e573b47b51d34d3aae0b152566c8", null ], 4 | [ "radianSeperation", "radian_seperation_8hpp.html#a712fd847123cfde7948c36ca59c6a435", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/radians_8hpp.js: -------------------------------------------------------------------------------- 1 | var radians_8hpp = 2 | [ 3 | [ "radians", "radians_8hpp.html#a746ecf69081dec55ceb2647726ee106b", null ], 4 | [ "radians", "radians_8hpp.html#ac0f2714a22ef5029abf0f3fee0028546", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rand_8hpp.js: -------------------------------------------------------------------------------- 1 | var rand_8hpp = 2 | [ 3 | [ "rand", "rand_8hpp.html#a0f5694167e15a8bc566a3fa6f842c3b4", null ], 4 | [ "rand", "rand_8hpp.html#addcae44c3b8becc43ec3b68320be6448", null ], 5 | [ "rand", "rand_8hpp.html#a1ade18596e03a35b52af4f4898219873", null ], 6 | [ "rand", "rand_8hpp.html#aaaa8ea280d9dddd9e7ad4176d600fc58", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rand_float_8hpp.js: -------------------------------------------------------------------------------- 1 | var rand_float_8hpp = 2 | [ 3 | [ "randFloat", "rand_float_8hpp.html#ac3e0e0a5bc8de02602b41e1ffd76cc0c", null ], 4 | [ "randFloat", "rand_float_8hpp.html#aa25dc7328a0f56b24bb95d64d5e71696", null ], 5 | [ "randFloat", "rand_float_8hpp.html#a04e742c1798986301a88674406f4f1ae", null ], 6 | [ "randFloat", "rand_float_8hpp.html#a74ee8c600b2687f192c9e98558bb7749", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rand_int_8hpp.js: -------------------------------------------------------------------------------- 1 | var rand_int_8hpp = 2 | [ 3 | [ "randInt", "rand_int_8hpp.html#a1ee880821d474068221a5a8d61e8d140", null ], 4 | [ "randInt", "rand_int_8hpp.html#a43201ec4ec8e0c99041647ab45ac0133", null ], 5 | [ "randInt", "rand_int_8hpp.html#a9c027e3e07b7a5bad53303f99cbfa242", null ], 6 | [ "randInt", "rand_int_8hpp.html#a5a9272860d7a99e7ef2d21d807f12d4a", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rand_n_8hpp.js: -------------------------------------------------------------------------------- 1 | var rand_n_8hpp = 2 | [ 3 | [ "randN", "rand_n_8hpp.html#aeffa74d48c1fb2603f83eaa358f17501", null ], 4 | [ "randN", "rand_n_8hpp.html#a8f38c2646cfb2f32c3c5e615ed7094ec", null ], 5 | [ "randN", "rand_n_8hpp.html#a785fc155155fc9d138f474634704464c", null ], 6 | [ "randN", "rand_n_8hpp.html#ac2577af2a5e3d84a449511544be2b887", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rank_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var rank_filter1d_8hpp = 2 | [ 3 | [ "rankFilter1d", "rank_filter1d_8hpp.html#a543f334070e494f6fba9a943a832415e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rank_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var rank_filter_8hpp = 2 | [ 3 | [ "rankFilter", "rank_filter_8hpp.html#a972e8e16448b6c4aab483b0e352d3e02", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/ravel_8hpp.js: -------------------------------------------------------------------------------- 1 | var ravel_8hpp = 2 | [ 3 | [ "ravel", "ravel_8hpp.html#a97b99f5723f60fb96e0395c9f8245aad", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/real_8hpp.js: -------------------------------------------------------------------------------- 1 | var real_8hpp = 2 | [ 3 | [ "real", "real_8hpp.html#a2aa35d113633586e2b4cb7455d596135", null ], 4 | [ "real", "real_8hpp.html#a74174a26b4b6db41951d9ce4222ea724", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/reciprocal_8hpp.js: -------------------------------------------------------------------------------- 1 | var reciprocal_8hpp = 2 | [ 3 | [ "reciprocal", "reciprocal_8hpp.html#ac379a0ea94c047c68ab2c11cf7e4a20c", null ], 4 | [ "reciprocal", "reciprocal_8hpp.html#a4dd4cebc27ce1b1b9870351c389d3d6e", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/reflect1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var reflect1d_8hpp = 2 | [ 3 | [ "reflect1d", "reflect1d_8hpp.html#a2aa70ace75c27286b042c0c791a1740c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/reflect2d_8hpp.js: -------------------------------------------------------------------------------- 1 | var reflect2d_8hpp = 2 | [ 3 | [ "reflect2d", "reflect2d_8hpp.html#a99bb37ba6308cf8e9837a0c45cbe77e8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/remainder_8hpp.js: -------------------------------------------------------------------------------- 1 | var remainder_8hpp = 2 | [ 3 | [ "remainder", "remainder_8hpp.html#abb157bedd0a3a4c5ee9d7dabc57cfde1", null ], 4 | [ "remainder", "remainder_8hpp.html#a12bfc5b4d937aa0366b70fb15270bd41", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/repeat_8hpp.js: -------------------------------------------------------------------------------- 1 | var repeat_8hpp = 2 | [ 3 | [ "repeat", "repeat_8hpp.html#aebfa0b2d46a3bc250aff4e3c598c839c", null ], 4 | [ "repeat", "repeat_8hpp.html#ae39bc7fd9c3454a42f363568217836a0", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/replace_8hpp.js: -------------------------------------------------------------------------------- 1 | var replace_8hpp = 2 | [ 3 | [ "replace", "replace_8hpp.html#a9d5868cb211ddcded4d77cca491f6534", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/reshape_8hpp.js: -------------------------------------------------------------------------------- 1 | var reshape_8hpp = 2 | [ 3 | [ "reshape", "reshape_8hpp.html#a73096b21189fdc428553b7ab7a5ad556", null ], 4 | [ "reshape", "reshape_8hpp.html#aefb96d516e9a43af5a0d00abbdc84c13", null ], 5 | [ "reshape", "reshape_8hpp.html#acdbf4216db6847c75edd31a8a80fd14f", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/resize_fast_8hpp.js: -------------------------------------------------------------------------------- 1 | var resize_fast_8hpp = 2 | [ 3 | [ "resizeFast", "resize_fast_8hpp.html#aec89c88529b04af23dc11ca109aef785", null ], 4 | [ "resizeFast", "resize_fast_8hpp.html#a7eaba50d97a2a70d6c5bfd1a247b9fe8", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/resize_slow_8hpp.js: -------------------------------------------------------------------------------- 1 | var resize_slow_8hpp = 2 | [ 3 | [ "resizeSlow", "resize_slow_8hpp.html#aeca2863aaf4c761bfeac75fed7ad876f", null ], 4 | [ "resizeSlow", "resize_slow_8hpp.html#a3560b7f9e3a8a9c5a917af05d1e3380e", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/riemann__zeta_8hpp.js: -------------------------------------------------------------------------------- 1 | var riemann__zeta_8hpp = 2 | [ 3 | [ "riemann_zeta", "riemann__zeta_8hpp.html#a6a4ac80df3e9946630cf330d03cbbbd2", null ], 4 | [ "riemann_zeta", "riemann__zeta_8hpp.html#a8d31d086f833496ad7eb98c5bd6304a2", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/right__shift_8hpp.js: -------------------------------------------------------------------------------- 1 | var right__shift_8hpp = 2 | [ 3 | [ "right_shift", "right__shift_8hpp.html#aa5c349237676e36b3f370400ebe15958", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rint_8hpp.js: -------------------------------------------------------------------------------- 1 | var rint_8hpp = 2 | [ 3 | [ "rint", "rint_8hpp.html#a87296ee338d4ca7f7c47dd4d8c932b53", null ], 4 | [ "rint", "rint_8hpp.html#a9ba33527dbca7d5482cf88899abd827d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rms_8hpp.js: -------------------------------------------------------------------------------- 1 | var rms_8hpp = 2 | [ 3 | [ "rms", "rms_8hpp.html#adc5caccd6d4c255fe829e3ef29b74c06", null ], 4 | [ "rms", "rms_8hpp.html#af035e4f81581711cb75db264e6d95f0f", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rodrigues_rotation_8hpp.js: -------------------------------------------------------------------------------- 1 | var rodrigues_rotation_8hpp = 2 | [ 3 | [ "rodriguesRotation", "rodrigues_rotation_8hpp.html#aa8fffbd937de1eea795e3fcb1b12fe9c", null ], 4 | [ "rodriguesRotation", "rodrigues_rotation_8hpp.html#ae7d7397eec3edcfbd8b6b9784ad2fd1c", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/roll_8hpp.js: -------------------------------------------------------------------------------- 1 | var roll_8hpp = 2 | [ 3 | [ "roll", "roll_8hpp.html#aa9b9e6ad225cc08a9f9c3c1753779f2e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/romberg_8hpp.js: -------------------------------------------------------------------------------- 1 | var romberg_8hpp = 2 | [ 3 | [ "romberg", "romberg_8hpp.html#a5406412619aa59539dd19f62f0be8caf", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/rot90_8hpp.js: -------------------------------------------------------------------------------- 1 | var rot90_8hpp = 2 | [ 3 | [ "rot90", "rot90_8hpp.html#ab3bff6f3226aeeb44fe6d10c16612d2c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/round_8hpp.js: -------------------------------------------------------------------------------- 1 | var round_8hpp = 2 | [ 3 | [ "round", "round_8hpp.html#ac9cf532596ca573afe2ffe7b3c4d597f", null ], 4 | [ "round", "round_8hpp.html#af9c0b27b59e8a7be27130c9f470c4ef3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/row__stack_8hpp.js: -------------------------------------------------------------------------------- 1 | var row__stack_8hpp = 2 | [ 3 | [ "row_stack", "row__stack_8hpp.html#a4d53bca44b0a1ec255de0bc72d048bf2", null ], 4 | [ "row_stack", "row__stack_8hpp.html#a30645a0f4a3d616460811985a2d039ec", null ], 5 | [ "row_stack", "row__stack_8hpp.html#a48d1df90f52438ca2755fdd0cd5ee348", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['j_0',['j',['../classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97',1,'nc::rotations::Quaternion::j()'],['../namespacenc_1_1constants.html#a0e933571f05ee6af915fc327260517e9',1,'nc::constants::j']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['k_0',['k',['../classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048',1,'nc::rotations::Quaternion']]], 4 | ['kaiser_1',['kaiser',['../namespacenc.html#a8b94f018199937d1e51b23b93a100c7d',1,'nc']]], 5 | ['kaiser_2ehpp_2',['kaiser.hpp',['../kaiser_8hpp.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['binarydatalogger_0',['BinaryDataLogger',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html',1,'nc::logger::detail']]], 4 | ['binarylogger_1',['BinaryLogger',['../classnc_1_1logger_1_1_binary_logger.html',1,'nc::logger']]], 5 | ['bisection_2',['Bisection',['../classnc_1_1roots_1_1_bisection.html',1,'nc::roots']]], 6 | ['brent_3',['Brent',['../classnc_1_1roots_1_1_brent.html',1,'nc::roots']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_10.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['vec2_0',['Vec2',['../classnc_1_1_vec2.html',1,'nc']]], 4 | ['vec3_1',['Vec3',['../classnc_1_1_vec3.html',1,'nc']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ecef_0',['ECEF',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html',1,'nc::coordinates::reference_frames']]], 4 | ['enu_1',['ENU',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html',1,'nc::coordinates::reference_frames']]], 5 | ['euler_2',['Euler',['../classnc_1_1coordinates_1_1_euler.html',1,'nc::coordinates']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['geocentric_0',['Geocentric',['../classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html',1,'nc::coordinates::reference_frames']]], 4 | ['greaterthan_1',['greaterThan',['../structnc_1_1greater_than.html',1,'nc']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['legendrepolynomial_0',['LegendrePolynomial',['../classnc_1_1integrate_1_1_legendre_polynomial.html',1,'nc::integrate']]], 4 | ['lla_1',['LLA',['../classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html',1,'nc::coordinates::reference_frames']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['orientation_0',['Orientation',['../classnc_1_1coordinates_1_1_orientation.html',1,'nc::coordinates']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pixel_0',['Pixel',['../classnc_1_1image_processing_1_1_pixel.html',1,'nc::imageProcessing']]], 4 | ['poly1d_1',['Poly1d',['../classnc_1_1polynomial_1_1_poly1d.html',1,'nc::polynomial']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['quaternion_0',['Quaternion',['../classnc_1_1rotations_1_1_quaternion.html',1,'nc::rotations']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ra_0',['RA',['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html',1,'nc::coordinates::reference_frames']]], 4 | ['result_1',['Result',['../structnc_1_1utils_1_1timeit__detail_1_1_result.html',1,'nc::utils::timeit_detail']]], 5 | ['rng_2',['RNG',['../classnc_1_1random_1_1_r_n_g.html',1,'nc::random']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['secant_0',['Secant',['../classnc_1_1roots_1_1_secant.html',1,'nc::roots']]], 4 | ['shape_1',['Shape',['../classnc_1_1_shape.html',1,'nc']]], 5 | ['slice_2',['Slice',['../classnc_1_1_slice.html',1,'nc']]], 6 | ['svd_3',['SVD',['../classnc_1_1linalg_1_1_s_v_d.html',1,'nc::linalg']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/classes_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['timer_0',['Timer',['../classnc_1_1_timer.html',1,'nc']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/defines_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['boost_5flogger_0',['BOOST_LOGGER',['../_logger_8hpp.html#a758197003cd3b1d0ae825df015c19a5b',1,'Logger.hpp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/defines_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['conditional_5fno_5fexcept_0',['CONDITIONAL_NO_EXCEPT',['../_stl_algorithms_8hpp.html#a328745b2b79b264770ec2783aa489f26',1,'StlAlgorithms.hpp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/defines_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['throw_5finvalid_5fargument_5ferror_0',['THROW_INVALID_ARGUMENT_ERROR',['../_error_8hpp.html#af2aff1172060367b9c5398fa097fa8fd',1,'Error.hpp']]], 4 | ['throw_5fruntime_5ferror_1',['THROW_RUNTIME_ERROR',['../_error_8hpp.html#a0f0ce4acf1fd6032112a06ebc50bb05a',1,'Error.hpp']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enums_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['axis_0',['Axis',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84',1,'nc']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enums_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['bias_0',['Bias',['../namespacenc.html#af32f8c9a95a0b701f8ecbcf0d1e9710c',1,'nc']]], 4 | ['boundary_1',['Boundary',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6',1,'nc::filter']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enums_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['endian_0',['Endian',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152',1,'nc']]], 4 | ['endpoint_1',['EndPoint',['../namespacenc.html#af9769af0418268b619b18e7f9ffa7f39',1,'nc']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enums_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['increasing_0',['Increasing',['../namespacenc.html#af9055934b0b2245795a4ecbcde6c8ebd',1,'nc']]], 4 | ['interpolationmethod_1',['InterpolationMethod',['../namespacenc.html#a476f76c3468948fe24d7abf9cd0d650e',1,'nc']]], 5 | ['isroots_2',['IsRoots',['../namespacenc.html#a85b85e03c940a6f01f9d77308a255455',1,'nc']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enums_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pointerpolicy_0',['PointerPolicy',['../namespacenc.html#ae31148c2c120e8ed49df98e7dcd960ec',1,'nc']]], 4 | ['printelapsedtime_1',['PrintElapsedTime',['../namespacenc.html#a789bf2546eff297f1ecc11542decf8d7',1,'nc']]], 5 | ['printresults_2',['PrintResults',['../namespacenc.html#a671e78f21b7e89dbb3f0afb50ecba063',1,'nc']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enums_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['replace_0',['Replace',['../namespacenc.html#a522ac3d88d34662e09f35b28fbf97582',1,'nc']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enums_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['side_0',['Side',['../namespacenc.html#a7b16f0b406f36ef56a47ff41f4476a09',1,'nc']]], 4 | ['sign_1',['Sign',['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9c',1,'nc::coordinates::reference_frames::Dec']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['big_0',['BIG',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152aa60c6c694491d75b439073b8cb05b139',1,'nc']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['col_0',['COL',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84aa44a065875f5d66d41474bb9bfb0ce05',1,'nc']]], 4 | ['constant_1',['CONSTANT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a8d6b5cada83510220f59e00ce86d4d92',1,'nc::filter']]], 5 | ['copy_2',['COPY',['../namespacenc.html#ae31148c2c120e8ed49df98e7dcd960ecae8606d021da140a92c7eba8d9b8af84f',1,'nc']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['higher_0',['HIGHER',['../namespacenc.html#a476f76c3468948fe24d7abf9cd0d650ea5bc0a7ce2c77ccd49169277e9289e5d1',1,'nc']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['midpoint_0',['MIDPOINT',['../namespacenc.html#a476f76c3468948fe24d7abf9cd0d650eaafa8fd4b90a3f8123b4bd30446518a7e',1,'nc']]], 4 | ['mirror_1',['MIRROR',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a72a92ae9c1d172cdda196686278fbfc6',1,'nc::filter']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['positive_0',['POSITIVE',['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9caab6c31432785221bae58327ef5f6ea58',1,'nc::coordinates::reference_frames::Dec']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['reflect_0',['REFLECT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae4f6a05f82ed398f984f4bc1a55838df',1,'nc::filter']]], 4 | ['right_1',['RIGHT',['../namespacenc.html#a7b16f0b406f36ef56a47ff41f4476a09a21507b40c80068eda19865706fdc2403',1,'nc']]], 5 | ['row_2',['ROW',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84a54c1ed33c810f895d48c008d89f880b7',1,'nc']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['shell_0',['SHELL',['../namespacenc.html#ae31148c2c120e8ed49df98e7dcd960eca28d568b3892dce36f2833542693a1062',1,'nc']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['wrap_0',['WRAP',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae1c8555fcf0ea2bb648a6fd527d658c0',1,'nc::filter']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/enumvalues_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['wrap_0',['WRAP',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae1c8555fcf0ea2bb648a6fd527d658c0',1,'nc::filter']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/files_16.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['zeros_2ehpp_0',['zeros.hpp',['../zeros_8hpp.html',1,'']]], 4 | ['zeros_5flike_2ehpp_1',['zeros_like.hpp',['../zeros__like_8hpp.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/files_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['kaiser_2ehpp_0',['kaiser.hpp',['../kaiser_8hpp.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/files_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ones_2ehpp_0',['ones.hpp',['../ones_8hpp.html',1,'']]], 4 | ['ones_5flike_2ehpp_1',['ones_like.hpp',['../ones__like_8hpp.html',1,'']]], 5 | ['orientation_2ehpp_2',['Orientation.hpp',['../_orientation_8hpp.html',1,'']]], 6 | ['outer_2ehpp_3',['outer.hpp',['../outer_8hpp.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/files_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['quaternion_2ehpp_0',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/functions_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['j_0',['j',['../classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97',1,'nc::rotations::Quaternion']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/functions_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['k_0',['k',['../classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048',1,'nc::rotations::Quaternion']]], 4 | ['kaiser_1',['kaiser',['../namespacenc.html#a8b94f018199937d1e51b23b93a100c7d',1,'nc']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['building_0',['Building',['../md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_building.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['flags_0',['Flags',['../md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_compiler_flags.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/pages_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['installation_0',['Installation',['../md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_installation.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/pages_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['notes_0',['Release Notes',['../md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_release_notes.html',1,'']]], 4 | ['numcpp_1',['NumCpp',['../index.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/pages_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['release_20notes_0',['Release Notes',['../md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_release_notes.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/search/search_l.png -------------------------------------------------------------------------------- /docs/doxygen/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/search/search_m.png -------------------------------------------------------------------------------- /docs/doxygen/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/search/search_r.png -------------------------------------------------------------------------------- /docs/doxygen/html/search/typedefs_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ndarray_5fint_5fconcept_0',['ndarray_int_concept',['../namespacenc.html#a4f1f02f3bb3727aa6345330faf5b58e3',1,'nc::ndarray_int_concept'],['../namespacenc_1_1type__traits.html#ac111467c05380243e5e3400a32ee4b78',1,'nc::type_traits::ndarray_int_concept']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/typedefs_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['text_5fsink_0',['text_sink',['../namespacenc_1_1logger_1_1detail.html#adecdbd3e5954177cb9ca6a5e93205822',1,'nc::logger::detail']]], 4 | ['timepoint_1',['timepoint',['../classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6',1,'nc::Timer::TimePoint'],['../namespacenc.html#abf800624d265aabbc5bc48ff63c91562',1,'nc::TimePoint']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/typedefs_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['uint16_0',['uint16',['../namespacenc.html#a8146518cf6c6a8029c3d84a376167793',1,'nc']]], 4 | ['uint32_1',['uint32',['../namespacenc.html#af0f49663fb63332596e2e6327009d581',1,'nc']]], 5 | ['uint64_2',['uint64',['../namespacenc.html#a773f8535ba713f886e9e1b8378f6d76d',1,'nc']]], 6 | ['uint8_3',['uint8',['../namespacenc.html#a9ba5a0aa26753a185985b8273fb9062d',1,'nc']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_11.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['x_0',['x',['../classnc_1_1coordinates_1_1_cartesian.html#add44d8cd4ee04ef61120fc0c0d12e550',1,'nc::coordinates::Cartesian::x'],['../classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458',1,'nc::Vec2::x'],['../classnc_1_1_vec3.html#a7f71dd08d58a1327739de6041e3362bb',1,'nc::Vec3::x']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z_0',['z',['../classnc_1_1coordinates_1_1_cartesian.html#a9f51fd4fa6aad2c318df86588ed6a34f',1,'nc::coordinates::Cartesian::z'],['../classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41',1,'nc::Vec3::z']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_14.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['z_0',['z',['../classnc_1_1coordinates_1_1_cartesian.html#a9f51fd4fa6aad2c318df86588ed6a34f',1,'nc::coordinates::Cartesian::z()'],['../classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41',1,'nc::Vec3::z()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['generator_5f_0',['generator_',['../namespacenc_1_1random.html#aa541047e6b742f1c5251e72f3b7aec95',1,'nc::random']]], 4 | ['greaterthan_5fv_1',['greaterThan_v',['../namespacenc.html#a4cdb8bc70afcd7483d200f235181471c',1,'nc']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['has_5fserialize_5fv_0',['has_serialize_v',['../namespacenc_1_1logger_1_1detail_1_1type__traits.html#aa30c2da7db6ec70c49ea2a8903255397',1,'nc::logger::detail::type_traits']]], 4 | ['hours_5fper_5fday_1',['HOURS_PER_DAY',['../namespacenc_1_1constants.html#aef903b1f40001bc712b61f5dec7de716',1,'nc::constants']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['j_0',['j',['../namespacenc_1_1constants.html#a0e933571f05ee6af915fc327260517e9',1,'nc::constants']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['nan_0',['nan',['../namespacenc_1_1constants.html#af94758715a9a5157d7ca95ab89d390ac',1,'nc::constants']]], 4 | ['numiterations_5f_1',['numIterations_',['../classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20',1,'nc::roots::Iteration']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['output_5flog_5ffile_5fext_0',['OUTPUT_LOG_FILE_EXT',['../namespacenc_1_1logger_1_1detail.html#af82047f715f0ec872ea97837827597f2',1,'nc::logger::detail']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/doxygen/html/search/variables_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['theta_0',['theta',['../classnc_1_1coordinates_1_1_euler.html#acdcc1795fe468bb026d4da943b50b6a4',1,'nc::coordinates::Euler']]], 4 | ['twopi_1',['twoPi',['../namespacenc_1_1constants.html#ae18e903e208f0017275a35ef9d3f06b5',1,'nc::constants']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/doxygen/html/searchsorted_8hpp.js: -------------------------------------------------------------------------------- 1 | var searchsorted_8hpp = 2 | [ 3 | [ "searchsorted", "searchsorted_8hpp.html#a52ba185a8ca3f231986b8ffa737fd296", null ], 4 | [ "searchsorted", "searchsorted_8hpp.html#a99718b2914410e6c1166154122c6f314", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/select_8hpp.js: -------------------------------------------------------------------------------- 1 | var select_8hpp = 2 | [ 3 | [ "select", "select_8hpp.html#ab8a9fa3aaf96fc7f9b8635af81170da5", null ], 4 | [ "select", "select_8hpp.html#a9ca2d70f54f68cabcb65aaf87b87b8c8", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/setdiff1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var setdiff1d_8hpp = 2 | [ 3 | [ "setdiff1d", "setdiff1d_8hpp.html#ac02087737cabe80234ec24c3cb5c70ea", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/shuffle_8hpp.js: -------------------------------------------------------------------------------- 1 | var shuffle_8hpp = 2 | [ 3 | [ "shuffle", "shuffle_8hpp.html#a2c57a153b2235305ccadf068e70146f9", null ], 4 | [ "shuffle", "shuffle_8hpp.html#ad73d56152095ad55887c89f47490c070", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sign_8hpp.js: -------------------------------------------------------------------------------- 1 | var sign_8hpp = 2 | [ 3 | [ "sign", "sign_8hpp.html#aaca3db497366050e01e279e6a2f91e9f", null ], 4 | [ "sign", "sign_8hpp.html#a4a5d98f334e0b50a3cf9c2718485e5e9", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/signbit_8hpp.js: -------------------------------------------------------------------------------- 1 | var signbit_8hpp = 2 | [ 3 | [ "signbit", "signbit_8hpp.html#afb7d5d83208da53a56dddcc62c8f34c0", null ], 4 | [ "signbit", "signbit_8hpp.html#af6dcbdfea85cdc84b4ddcf6c978b71f1", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/simpson_8hpp.js: -------------------------------------------------------------------------------- 1 | var simpson_8hpp = 2 | [ 3 | [ "simpson", "simpson_8hpp.html#aa7c55b05139ecfce5e5a9d0380df9eb1", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sin_8hpp.js: -------------------------------------------------------------------------------- 1 | var sin_8hpp = 2 | [ 3 | [ "sin", "sin_8hpp.html#aff909cb0ae96644487adaedbbb498cea", null ], 4 | [ "sin", "sin_8hpp.html#a3fa4e582cdeef0716309ad51378f2983", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sinc_8hpp.js: -------------------------------------------------------------------------------- 1 | var sinc_8hpp = 2 | [ 3 | [ "sinc", "sinc_8hpp.html#a0c8e5bf6fca377445afd941d70bcac10", null ], 4 | [ "sinc", "sinc_8hpp.html#aafe29b8d2e32e8e2af4d92074851b777", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sinh_8hpp.js: -------------------------------------------------------------------------------- 1 | var sinh_8hpp = 2 | [ 3 | [ "sinh", "sinh_8hpp.html#a8de43bfef3cdd2e1af1c521dcf3a2dcd", null ], 4 | [ "sinh", "sinh_8hpp.html#a7672779bec72183de09ddc469739b385", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/size_8hpp.js: -------------------------------------------------------------------------------- 1 | var size_8hpp = 2 | [ 3 | [ "size", "size_8hpp.html#a25f36ba02112a206936fae22b0724bb9", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/softmax_8hpp.js: -------------------------------------------------------------------------------- 1 | var softmax_8hpp = 2 | [ 3 | [ "softmax", "softmax_8hpp.html#a57c31ef5f8cbde558d6871c979162d51", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/solve_8hpp.js: -------------------------------------------------------------------------------- 1 | var solve_8hpp = 2 | [ 3 | [ "solve", "solve_8hpp.html#afc9432e7c93e830c4ff8cff7f0a15771", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sort_8hpp.js: -------------------------------------------------------------------------------- 1 | var sort_8hpp = 2 | [ 3 | [ "sort", "sort_8hpp.html#a3c24c68959c609535bc8ae6a33f54d49", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/spherical__bessel__jn_8hpp.js: -------------------------------------------------------------------------------- 1 | var spherical__bessel__jn_8hpp = 2 | [ 3 | [ "spherical_bessel_jn", "spherical__bessel__jn_8hpp.html#aa7f12646500dfd811792934164f8f403", null ], 4 | [ "spherical_bessel_jn", "spherical__bessel__jn_8hpp.html#a979e99d8a1626829183e38f69486e263", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/spherical__bessel__yn_8hpp.js: -------------------------------------------------------------------------------- 1 | var spherical__bessel__yn_8hpp = 2 | [ 3 | [ "spherical_bessel_yn", "spherical__bessel__yn_8hpp.html#a11378004d6f60a0ecf65470d071985b0", null ], 4 | [ "spherical_bessel_yn", "spherical__bessel__yn_8hpp.html#a1628a418aa8896a4f9711083ac5579d5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/spherical__hankel__1_8hpp.js: -------------------------------------------------------------------------------- 1 | var spherical__hankel__1_8hpp = 2 | [ 3 | [ "spherical_hankel_1", "spherical__hankel__1_8hpp.html#a239954539e877214833b9cfe65f742db", null ], 4 | [ "spherical_hankel_1", "spherical__hankel__1_8hpp.html#a5c0f4be297580a6d46f89b851c948227", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/spherical__hankel__2_8hpp.js: -------------------------------------------------------------------------------- 1 | var spherical__hankel__2_8hpp = 2 | [ 3 | [ "spherical_hankel_2", "spherical__hankel__2_8hpp.html#aa0181306ece55cbaf50c65da8d215542", null ], 4 | [ "spherical_hankel_2", "spherical__hankel__2_8hpp.html#a6f14fa5d84fc2a11044dc884831c7496", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/spherical__harmonic_8hpp.js: -------------------------------------------------------------------------------- 1 | var spherical__harmonic_8hpp = 2 | [ 3 | [ "spherical_harmonic", "spherical__harmonic_8hpp.html#af7a944bc738f9e7ca09d4669feeb03a3", null ], 4 | [ "spherical_harmonic_i", "spherical__harmonic_8hpp.html#a583c30981b9547a90ad7c33edbe041c1", null ], 5 | [ "spherical_harmonic_r", "spherical__harmonic_8hpp.html#a5ed971ca59899f372f28a53913796745", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/split_8hpp.js: -------------------------------------------------------------------------------- 1 | var split_8hpp = 2 | [ 3 | [ "split", "split_8hpp.html#a7c557b0fd100b3f3e8dfe0b5d2a7bfa5", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/splitbar.png -------------------------------------------------------------------------------- /docs/doxygen/html/splitbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/splitbard.png -------------------------------------------------------------------------------- /docs/doxygen/html/sqr_8hpp.js: -------------------------------------------------------------------------------- 1 | var sqr_8hpp = 2 | [ 3 | [ "sqr", "sqr_8hpp.html#ae792e10a24b7e5b8291a6c31a28a4512", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sqrt_8hpp.js: -------------------------------------------------------------------------------- 1 | var sqrt_8hpp = 2 | [ 3 | [ "sqrt", "sqrt_8hpp.html#abb4086978f52185f25340b0ff57ca8f0", null ], 4 | [ "sqrt", "sqrt_8hpp.html#a941a5a1ffb61387495a6f23dc4036287", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/square_8hpp.js: -------------------------------------------------------------------------------- 1 | var square_8hpp = 2 | [ 3 | [ "square", "square_8hpp.html#a39a70c2ad8141e46fc0c56b8d90a0a00", null ], 4 | [ "square", "square_8hpp.html#a282e72a93afe2e6554e0f17f21dd7b9e", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/stack_8hpp.js: -------------------------------------------------------------------------------- 1 | var stack_8hpp = 2 | [ 3 | [ "stack", "stack_8hpp.html#a24fef48ccdf0d872dc24bd40189c252c", null ], 4 | [ "stack", "stack_8hpp.html#abbb3b38779a9d5cc3f473eef1f914057", null ], 5 | [ "stack", "stack_8hpp.html#a2d30e8c82521930d506dd08f5cfaf79b", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/standard_normal_8hpp.js: -------------------------------------------------------------------------------- 1 | var standard_normal_8hpp = 2 | [ 3 | [ "standardNormal", "standard_normal_8hpp.html#acc9d03c66c1fa8b35dea3fa0a0f075e7", null ], 4 | [ "standardNormal", "standard_normal_8hpp.html#a279c7f289afa743f29665cffb9bc6130", null ], 5 | [ "standardNormal", "standard_normal_8hpp.html#abdee8056d3ea531f0bf8a7a688e3f002", null ], 6 | [ "standardNormal", "standard_normal_8hpp.html#ad13106b872fe88187f21aeca26e078f0", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/stdev_8hpp.js: -------------------------------------------------------------------------------- 1 | var stdev_8hpp = 2 | [ 3 | [ "stdev", "stdev_8hpp.html#a53ac40df08d0e0ac23ac99719a46f11e", null ], 4 | [ "stdev", "stdev_8hpp.html#ab743c3f0710a1d9cc48364d749e8da23", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4 = 2 | [ 3 | [ "value", "structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html#a6e1a48ad3dc95bb666261cd0e3503f5c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1all__arithmetic_3_01_t_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1all__arithmetic_3_01_t_01_4 = 2 | [ 3 | [ "value", "structnc_1_1all__arithmetic_3_01_t_01_4.html#aeb8a99e0539f9d4d01b6ac63dfe6c186", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4 = 2 | [ 3 | [ "value", "structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html#a35efae6bdf247952d31021b7e811a653", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_t2_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1all__same_3_01_t1_00_01_t2_01_4 = 2 | [ 3 | [ "value", "structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1greater_than.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1greater_than = 2 | [ 3 | [ "value", "structnc_1_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1is__complex.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1is__complex = 2 | [ 3 | [ "value", "structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4 = 2 | [ 3 | [ "value", "structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html#add526ed6ceb3045a816385e5c2c6d553", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4 = 2 | [ 3 | [ "value", "structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#abcc0bf96b96ead1f67112d755aa417a8", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1is__valid__dtype.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1is__valid__dtype = 2 | [ 3 | [ "value", "structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4 = 2 | [ 3 | [ "value", "structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#ac6c1b85d844e22cf66f62d1c05912d55", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4 = 2 | [ 3 | [ "value", "structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#adf26f13ad7b6cf3263f4b8f57ccb0283", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/structnc_1_1utils_1_1timeit__detail_1_1_result.js: -------------------------------------------------------------------------------- 1 | var structnc_1_1utils_1_1timeit__detail_1_1_result = 2 | [ 3 | [ "max", "structnc_1_1utils_1_1timeit__detail_1_1_result.html#a76be5895c0364f78323f8af4d2696cb9", null ], 4 | [ "mean", "structnc_1_1utils_1_1timeit__detail_1_1_result.html#a8fe6dbd4f8c843427276d22fcdf11c97", null ], 5 | [ "min", "structnc_1_1utils_1_1timeit__detail_1_1_result.html#affcef185e2ace7dd37dab450ee350209", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/student_t_8hpp.js: -------------------------------------------------------------------------------- 1 | var student_t_8hpp = 2 | [ 3 | [ "studentT", "student_t_8hpp.html#a0323794f6a1d133f70adfa98409eb176", null ], 4 | [ "studentT", "student_t_8hpp.html#a9e8074cb89e2362b5ae485834f550217", null ], 5 | [ "studentT", "student_t_8hpp.html#a684b49082bfd8557d879d56a22c3bc38", null ], 6 | [ "studentT", "student_t_8hpp.html#ac3b67cb54637b932ca78f86f76ca10e1", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sum_8hpp.js: -------------------------------------------------------------------------------- 1 | var sum_8hpp = 2 | [ 3 | [ "sum", "sum_8hpp.html#ab688952cfec9d98f50dee43378a9f27b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/svd_8hpp.js: -------------------------------------------------------------------------------- 1 | var svd_8hpp = 2 | [ 3 | [ "svd", "svd_8hpp.html#acb38ad2613d50422afc539d005159055", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/swap_8hpp.js: -------------------------------------------------------------------------------- 1 | var swap_8hpp = 2 | [ 3 | [ "swap", "swap_8hpp.html#a39da0502565b913855379ea1439047e1", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/swap_cols_8hpp.js: -------------------------------------------------------------------------------- 1 | var swap_cols_8hpp = 2 | [ 3 | [ "swapCols", "swap_cols_8hpp.html#a4f75f9175f584d2713ba68962b824dbe", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/swap_rows_8hpp.js: -------------------------------------------------------------------------------- 1 | var swap_rows_8hpp = 2 | [ 3 | [ "swapRows", "swap_rows_8hpp.html#ad028746fa5632bec388025cb21d33e0c", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/swapaxes_8hpp.js: -------------------------------------------------------------------------------- 1 | var swapaxes_8hpp = 2 | [ 3 | [ "swapaxes", "swapaxes_8hpp.html#a2b2486e85699eb3710fa521082c80436", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/sync_off.png -------------------------------------------------------------------------------- /docs/doxygen/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/sync_on.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_a.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_ad.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_b.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_bd.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_h.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_hd.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_s.png -------------------------------------------------------------------------------- /docs/doxygen/html/tab_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/doxygen/html/tab_sd.png -------------------------------------------------------------------------------- /docs/doxygen/html/take_8hpp.js: -------------------------------------------------------------------------------- 1 | var take_8hpp = 2 | [ 3 | [ "take", "take_8hpp.html#a735d4d07ccf9a9dea9089fd0c53c531f", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/tan_8hpp.js: -------------------------------------------------------------------------------- 1 | var tan_8hpp = 2 | [ 3 | [ "tan", "tan_8hpp.html#abf0186d9e6764cd8b2a5e1529046429b", null ], 4 | [ "tan", "tan_8hpp.html#a50d3734603bda1d991baf0696a4b96ce", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/tanh_8hpp.js: -------------------------------------------------------------------------------- 1 | var tanh_8hpp = 2 | [ 3 | [ "tanh", "tanh_8hpp.html#aadd0ed02db4a60f805766e7026c78438", null ], 4 | [ "tanh", "tanh_8hpp.html#a3d75639028d96fe20286a82740361c6e", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/tile_8hpp.js: -------------------------------------------------------------------------------- 1 | var tile_8hpp = 2 | [ 3 | [ "tile", "tile_8hpp.html#ae8d8274b627d078b9a10a7a6ca5287fc", null ], 4 | [ "tile", "tile_8hpp.html#afe95ff2deab9c6d5f423994c099a413d", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/timeit_8hpp.js: -------------------------------------------------------------------------------- 1 | var timeit_8hpp = 2 | [ 3 | [ "nc::utils::timeit_detail::Result< TimeUnit >", "structnc_1_1utils_1_1timeit__detail_1_1_result.html", "structnc_1_1utils_1_1timeit__detail_1_1_result" ], 4 | [ "operator<<", "timeit_8hpp.html#ae0e45f81e262bd1190cfda3a2bd3a1c8", null ], 5 | [ "timeit", "timeit_8hpp.html#a0e4aa605b6e057bd966f9c23ef365c6f", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/to_stl_vector_8hpp.js: -------------------------------------------------------------------------------- 1 | var to_stl_vector_8hpp = 2 | [ 3 | [ "toStlVector", "to_stl_vector_8hpp.html#a1d11575e06af9fcb2a87201fc62e9cba", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/tofile_8hpp.js: -------------------------------------------------------------------------------- 1 | var tofile_8hpp = 2 | [ 3 | [ "tofile", "tofile_8hpp.html#adf3cdf51801e83c58bc58c606781467d", null ], 4 | [ "tofile", "tofile_8hpp.html#a7dc5b27b93f5a921a39151714fa78d67", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trace_8hpp.js: -------------------------------------------------------------------------------- 1 | var trace_8hpp = 2 | [ 3 | [ "trace", "trace_8hpp.html#a4a75035db8c766b2cececb1f3e4d5b74", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/transpose_8hpp.js: -------------------------------------------------------------------------------- 1 | var transpose_8hpp = 2 | [ 3 | [ "transpose", "transpose_8hpp.html#af5bc0015bc8f7e29d7eba3c17ec139b4", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trapazoidal_8hpp.js: -------------------------------------------------------------------------------- 1 | var trapazoidal_8hpp = 2 | [ 3 | [ "trapazoidal", "trapazoidal_8hpp.html#acdfbecb87f7780b2961eb4e5d3b3d109", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trapz_8hpp.js: -------------------------------------------------------------------------------- 1 | var trapz_8hpp = 2 | [ 3 | [ "trapz", "trapz_8hpp.html#ad1b0aafab44c981245443cf5c1988892", null ], 4 | [ "trapz", "trapz_8hpp.html#a4d3e8e18ea6e0a61cfcda1711cce9e78", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/triangle_8hpp.js: -------------------------------------------------------------------------------- 1 | var triangle_8hpp = 2 | [ 3 | [ "triangle", "triangle_8hpp.html#a108d42a99ddb594bdc09a0d83a2b9346", null ], 4 | [ "triangle", "triangle_8hpp.html#a3dd603264757ce4334bfc0b989cd4503", null ], 5 | [ "triangle", "triangle_8hpp.html#a5e20ac218d3d5eb43c76e7f306b8ea88", null ], 6 | [ "triangle", "triangle_8hpp.html#a116977f73650034faaa5d33b55819ef5", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trigamma_8hpp.js: -------------------------------------------------------------------------------- 1 | var trigamma_8hpp = 2 | [ 3 | [ "trigamma", "trigamma_8hpp.html#a0df9137d28cb3421435b464cbc482d5b", null ], 4 | [ "trigamma", "trigamma_8hpp.html#a8f98455b0421ab89f4722377d9606091", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trim__zeros_8hpp.js: -------------------------------------------------------------------------------- 1 | var trim__zeros_8hpp = 2 | [ 3 | [ "trim_zeros", "trim__zeros_8hpp.html#a6324f311bd14781e1e024c6f1a2cb718", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trim_boundary1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var trim_boundary1d_8hpp = 2 | [ 3 | [ "trimBoundary1d", "trim_boundary1d_8hpp.html#aa753b52c6793ccc5e186979323b66371", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trim_boundary2d_8hpp.js: -------------------------------------------------------------------------------- 1 | var trim_boundary2d_8hpp = 2 | [ 3 | [ "trimBoundary2d", "trim_boundary2d_8hpp.html#a5fda93817aa652cdd377c9dbb6814cf7", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/trunc_8hpp.js: -------------------------------------------------------------------------------- 1 | var trunc_8hpp = 2 | [ 3 | [ "trunc", "trunc_8hpp.html#a81f9e7575733a8279c0dbea1897716a8", null ], 4 | [ "trunc", "trunc_8hpp.html#ac83a50ef99e61f116a86df98196f4a8b", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/uniform_8hpp.js: -------------------------------------------------------------------------------- 1 | var uniform_8hpp = 2 | [ 3 | [ "uniform", "uniform_8hpp.html#a36da9b7a166bcdaaf8177191b8e15944", null ], 4 | [ "uniform", "uniform_8hpp.html#adbff3f6b80e512d4153b12bae9c6c732", null ], 5 | [ "uniform", "uniform_8hpp.html#a648263b5450fb64ba93952637984feb4", null ], 6 | [ "uniform", "uniform_8hpp.html#ab77de38f57e578f6ae45db74f0c9f4dd", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/uniform_filter1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var uniform_filter1d_8hpp = 2 | [ 3 | [ "uniformFilter1d", "uniform_filter1d_8hpp.html#afcf603e5055c7bc01aed09067357e004", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/uniform_filter_8hpp.js: -------------------------------------------------------------------------------- 1 | var uniform_filter_8hpp = 2 | [ 3 | [ "uniformFilter", "uniform_filter_8hpp.html#a6bebba3c4767e33ec5710cb24b1a9952", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/uniform_on_sphere_8hpp.js: -------------------------------------------------------------------------------- 1 | var uniform_on_sphere_8hpp = 2 | [ 3 | [ "uniformOnSphere", "uniform_on_sphere_8hpp.html#a84375160c024c77e8010a65c1d85456c", null ], 4 | [ "uniformOnSphere", "uniform_on_sphere_8hpp.html#a004deaafb82525b8acbbc4a9984ba6e3", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/union1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var union1d_8hpp = 2 | [ 3 | [ "union1d", "union1d_8hpp.html#a9dc5a706d1cbeb822ace82eac5ace756", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/unique_8hpp.js: -------------------------------------------------------------------------------- 1 | var unique_8hpp = 2 | [ 3 | [ "unique", "unique_8hpp.html#a8b346bcf0083d2b809c83bb0433800de", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/unpackbits_8hpp.js: -------------------------------------------------------------------------------- 1 | var unpackbits_8hpp = 2 | [ 3 | [ "unpackbitsBigEndian", "unpackbits_8hpp.html#a451b9913df2d6e92384a39299f4195e2", null ], 4 | [ "unpackbitsLittleEndian", "unpackbits_8hpp.html#a5ce3cb62877f9e55208335b8dcecb502", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/unwrap_8hpp.js: -------------------------------------------------------------------------------- 1 | var unwrap_8hpp = 2 | [ 3 | [ "unwrap", "unwrap_8hpp.html#a95b20b603ab817268e65a1718f7063c0", null ], 4 | [ "unwrap", "unwrap_8hpp.html#aac5e942220c693fb9e65fcc3ff4fc50f", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/value2str_8hpp.js: -------------------------------------------------------------------------------- 1 | var value2str_8hpp = 2 | [ 3 | [ "value2str", "value2str_8hpp.html#a83530b13c9cc3b01b9bd8b8d3113290a", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/vander_8hpp.js: -------------------------------------------------------------------------------- 1 | var vander_8hpp = 2 | [ 3 | [ "vander", "vander_8hpp.html#a75841a79c6ec1409e304bab6419ab9d1", null ], 4 | [ "vander", "vander_8hpp.html#a3f4ba3545242fa79936ca6f07f5a311b", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/var_8hpp.js: -------------------------------------------------------------------------------- 1 | var var_8hpp = 2 | [ 3 | [ "var", "var_8hpp.html#af93c7b399ebf8d5d32e4b6077a40b808", null ], 4 | [ "var", "var_8hpp.html#a81a573905b290c2109d706467b896b58", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/vsplit_8hpp.js: -------------------------------------------------------------------------------- 1 | var vsplit_8hpp = 2 | [ 3 | [ "vsplit", "vsplit_8hpp.html#abe2917067a4a8a00fbd8978e5d30bd40", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/vstack_8hpp.js: -------------------------------------------------------------------------------- 1 | var vstack_8hpp = 2 | [ 3 | [ "vstack", "vstack_8hpp.html#afa75736fe6a9935a89cec98790084779", null ], 4 | [ "vstack", "vstack_8hpp.html#aa9325c5314ce60dc3cc78abdaec95b2a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/wahbas_problem_8hpp.js: -------------------------------------------------------------------------------- 1 | var wahbas_problem_8hpp = 2 | [ 3 | [ "wahbasProblem", "wahbas_problem_8hpp.html#a68a8ee72a4ce66a08d9c82ca07c67abc", null ], 4 | [ "wahbasProblem", "wahbas_problem_8hpp.html#abf46030aaa99f7140c2745e5387e7293", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/weibull_8hpp.js: -------------------------------------------------------------------------------- 1 | var weibull_8hpp = 2 | [ 3 | [ "weibull", "weibull_8hpp.html#afdab33ba03809f3ec86cd599ba1f1774", null ], 4 | [ "weibull", "weibull_8hpp.html#a3cf0bdb15264c1ace4163042756a4765", null ], 5 | [ "weibull", "weibull_8hpp.html#a3c395bc06822a92d5f5eda29c4f05a57", null ], 6 | [ "weibull", "weibull_8hpp.html#a7beba15b583bcc2d6f154aa02d25f34a", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/where_8hpp.js: -------------------------------------------------------------------------------- 1 | var where_8hpp = 2 | [ 3 | [ "where", "where_8hpp.html#a7a526300e6258fc6a008cfabc53d679c", null ], 4 | [ "where", "where_8hpp.html#a1eed489361c25871cc2b7eb145801f34", null ], 5 | [ "where", "where_8hpp.html#a02536af28b73e4f8d89448275868604d", null ], 6 | [ "where", "where_8hpp.html#a4af86e9630d2d2c3de9ce2e1f91e0bdf", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/window_exceedances_8hpp.js: -------------------------------------------------------------------------------- 1 | var window_exceedances_8hpp = 2 | [ 3 | [ "windowExceedances", "window_exceedances_8hpp.html#a6613333b700d2e8c41f1a60505bc9715", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/wrap1d_8hpp.js: -------------------------------------------------------------------------------- 1 | var wrap1d_8hpp = 2 | [ 3 | [ "wrap1d", "wrap1d_8hpp.html#a4c4bd84ce0d4ed8fa909d308b81e5fbe", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/wrap2_pi_8hpp.js: -------------------------------------------------------------------------------- 1 | var wrap2_pi_8hpp = 2 | [ 3 | [ "wrap2Pi", "wrap2_pi_8hpp.html#a766b7a38b991b5cf020e216cd457283b", null ], 4 | [ "wrap2Pi", "wrap2_pi_8hpp.html#a2162421f3e40c1ae6e9be31c6aa6cb81", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/wrap2d_8hpp.js: -------------------------------------------------------------------------------- 1 | var wrap2d_8hpp = 2 | [ 3 | [ "wrap2d", "wrap2d_8hpp.html#a73a8ab15f433e33364e2b6cacae5870b", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/wrap_8hpp.js: -------------------------------------------------------------------------------- 1 | var wrap_8hpp = 2 | [ 3 | [ "wrap", "wrap_8hpp.html#a37878bd95fc59fe18f891bb25748cb38", null ], 4 | [ "wrap", "wrap_8hpp.html#a934c6035316cd3a547161f1ed98c3442", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/zeros_8hpp.js: -------------------------------------------------------------------------------- 1 | var zeros_8hpp = 2 | [ 3 | [ "zeros", "zeros_8hpp.html#aba15909fe95d255b0eea84d0f0c93d30", null ], 4 | [ "zeros", "zeros_8hpp.html#a1c620c26cc358f639753f2c1cd73f1e0", null ], 5 | [ "zeros", "zeros_8hpp.html#abce4b61ffbaa3276f4f84088fdf25e95", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/doxygen/html/zeros__like_8hpp.js: -------------------------------------------------------------------------------- 1 | var zeros__like_8hpp = 2 | [ 3 | [ "zeros_like", "zeros__like_8hpp.html#a98f33a60a96942c994a19396907d27c0", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Page Redirection 7 | 8 | 9 | If you are not redirected automatically, follow the link to the documentation 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/logo/NumCppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/logo/NumCppLogo.png -------------------------------------------------------------------------------- /docs/logo/NumCppLogo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/logo/NumCppLogo.xcf -------------------------------------------------------------------------------- /docs/logo/NumCppLogoDoxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/logo/NumCppLogoDoxygen.png -------------------------------------------------------------------------------- /docs/logo/NumCppLogoDoxygen.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpilger26/NumCpp/7e3720c53c17f90008a6d47b3eeae987e2426ab2/docs/logo/NumCppLogoDoxygen.xcf -------------------------------------------------------------------------------- /examples/GaussNewtonNlls/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(TARGET_NAME GaussNewtonNlls) 2 | 3 | add_executable(${TARGET_NAME} GaussNewtonNlls.cpp) 4 | 5 | set_target_properties(${TARGET_NAME} 6 | PROPERTIES 7 | RUNTIME_OUTPUT_DIRECTORY ${OUTPUT_BINARY_DIR} 8 | ) 9 | 10 | target_include_directories(${TARGET_NAME} PRIVATE 11 | ${NUMCPP_INCLUDES} 12 | ) 13 | 14 | target_link_libraries(${TARGET_NAME} PRIVATE 15 | ${ALL_INTERFACE_TARGET} 16 | ) 17 | -------------------------------------------------------------------------------- /static_analysis/clang-format-all.sh: -------------------------------------------------------------------------------- 1 | find include -type f \( -name "*.hpp" \) -exec clang-format -style=file --fallback-style=none -i {} \; -------------------------------------------------------------------------------- /static_analysis/clang-tidy-all.sh: -------------------------------------------------------------------------------- 1 | export CLANG_TIDY_FLAGS="-extra-arg=-std=gnu++17 -p ./build/ --config-file=./.clang-tidy --header-filter=./include/*" 2 | # export CLANG_TIDY_FLAGS="--fix --fix-errors --fix-notes -extra-arg=-std=gnu++17 -p ./build/ --config-file=./.clang-tidy --header-filter=./include/*" 3 | export matchFiles=$(find ./include -iregex '.*\.\(cpp\|hpp\)$') 4 | echo ${matchFiles} | xargs -r -n 1 -P $(nproc) clang-tidy ${CLANG_TIDY_FLAGS} -------------------------------------------------------------------------------- /static_analysis/cppcheck-all.sh: -------------------------------------------------------------------------------- 1 | cd build 2 | rm -rf * 3 | cmake -DBUILD_CPPCHECK_TEST=ON .. 4 | cppcheck --project=compile_commands.json --enable=all --std=c++17 --error-exitcode=2 --inline-suppr --suppressions-list=../suppressions.txt --suppress=missingIncludeSystem --suppress=missingInclude 5 | cd .. -------------------------------------------------------------------------------- /suppressions.txt: -------------------------------------------------------------------------------- 1 | shadowFunction 2 | noExplicitConstructor -------------------------------------------------------------------------------- /test/cppcheck/CppCheck.cpp: -------------------------------------------------------------------------------- 1 | #include "NumCpp.hpp" 2 | 3 | #include 4 | 5 | int main() 6 | { 7 | std::cout << "Dummy file to include all headers for CppCheck\n"; 8 | 9 | return 0; 10 | } -------------------------------------------------------------------------------- /test/multiple/function.cpp: -------------------------------------------------------------------------------- 1 | #include "function.h" 2 | 3 | nc::NdArray getRandomArray(nc::uint32 numRows, nc::uint32 numCols) 4 | { 5 | return nc::random::rand({numRows, numCols}); 6 | } -------------------------------------------------------------------------------- /test/multiple/function.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "NumCpp.hpp" 4 | 5 | nc::NdArray getRandomArray(nc::uint32 numRows, nc::uint32 numCols); 6 | -------------------------------------------------------------------------------- /test/pytest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(src) 2 | -------------------------------------------------------------------------------- /test/pytest/environment.yml: -------------------------------------------------------------------------------- 1 | name: test 2 | dependencies: 3 | - python=3.12 4 | - pip 5 | - numpy=2.2 6 | - astropy 7 | - scipy 8 | - matplotlib 9 | - mpmath 10 | - pytest 11 | - boost 12 | - tbb 13 | - tbb-devel 14 | - gtest 15 | - gmock 16 | - pip: 17 | - pymap3d 18 | - vectormath 19 | -------------------------------------------------------------------------------- /test/pytest/src/Logger.cpp: -------------------------------------------------------------------------------- 1 | #include "BindingsIncludes.hpp" 2 | 3 | //================================================================================ 4 | 5 | void initLogger(pb11::module& /*m*/) { } 6 | -------------------------------------------------------------------------------- /test/pytest/src/pybind11/pybind11/common.h: -------------------------------------------------------------------------------- 1 | #include "detail/common.h" 2 | #warning "Including 'common.h' is deprecated. It will be removed in v3.0. Use 'pybind11.h'." 3 | -------------------------------------------------------------------------------- /test/pytest/src/pybind11/pybind11/conduit/README.txt: -------------------------------------------------------------------------------- 1 | NOTE 2 | ---- 3 | 4 | The C++ code here 5 | 6 | ** only depends on ** 7 | 8 | and nothing else. 9 | 10 | DO NOT ADD CODE WITH OTHER EXTERNAL DEPENDENCIES TO THIS DIRECTORY. 11 | 12 | Read on: 13 | 14 | pybind11_conduit_v1.h — Type-safe interoperability between different 15 | independent Python/C++ bindings systems. 16 | -------------------------------------------------------------------------------- /test/pytest/src/pybind11/pybind11/eigen.h: -------------------------------------------------------------------------------- 1 | /* 2 | pybind11/eigen.h: Transparent conversion for dense and sparse Eigen matrices 3 | 4 | Copyright (c) 2016 Wenzel Jakob 5 | 6 | All rights reserved. Use of this source code is governed by a 7 | BSD-style license that can be found in the LICENSE file. 8 | */ 9 | 10 | #pragma once 11 | 12 | #include "eigen/matrix.h" 13 | -------------------------------------------------------------------------------- /test/pytest/src/pybind11/pybind11/eigen/common.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2023 The pybind Community. 2 | 3 | #pragma once 4 | 5 | // Common message for `static_assert()`s, which are useful to easily 6 | // preempt much less obvious errors. 7 | #define PYBIND11_EIGEN_MESSAGE_POINTER_TYPES_ARE_NOT_SUPPORTED \ 8 | "Pointer types (in particular `PyObject *`) are not supported as scalar types for Eigen " \ 9 | "types." 10 | -------------------------------------------------------------------------------- /test/pytest/test_logger.py: -------------------------------------------------------------------------------- 1 | import NumCppPy as NumCpp # noqa E402 2 | 3 | 4 | def test_logger(): 5 | if NumCpp.NUMCPP_NO_USE_BOOST: 6 | return 7 | 8 | 9 | def test_binaryLogger(): 10 | if NumCpp.NUMCPP_NO_USE_BOOST: 11 | return 12 | --------------------------------------------------------------------------------