numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Definition of functions for gray code. More...
#include <cstdint>
Go to the source code of this file.
Namespaces | |
namespace | num_collect |
Namespace of num_collect source codes. | |
namespace | num_collect::util |
Namespace of utilities. | |
Functions | |
constexpr auto | num_collect::util::binary_to_gray_code (std::uint32_t binary) -> std::uint32_t |
Convert an integer from binary to Gray code [30]. | |
constexpr auto | num_collect::util::binary_to_gray_code (std::uint64_t binary) -> std::uint64_t |
Convert an integer from binary to Gray code [30]. | |
constexpr auto | num_collect::util::gray_code_to_binary (std::uint32_t gray_code) -> std::uint32_t |
Convert an integer from Gray code to binary [30]. | |
constexpr auto | num_collect::util::gray_code_to_binary (std::uint64_t gray_code) -> std::uint64_t |
Convert an integer from Gray code to binary [30]. | |
Definition of functions for gray code.
Definition in file gray_code.h.