Extracts the \(j\) part of a value.
Returns the \(j\) part of its argument. For real and complex inputs, the call returns 0. Its the third coefficient in the z representation and so is 0 for complex and floating.
#include <kyosu/kyosu.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
std::cout << "Real: ";
float f = 72.9f;
std::cout << f <<
" -> " <<
jpart(f) <<
"\n";
std::cout << "Complex: ";
std::cout << z <<
" -> " <<
jpart(z) <<
"\n";
std::cout << "Quaternion: ";
std::cout << q <<
" -> " <<
jpart(q) <<
" => ";
std::cout << q << "\n";
std::cout << "SIMD: ";
std::cout << wz <<
" -> " <<
jpart(wz) <<
" => ";
jpart(wz) = eve::wide<double, eve::fixed<2>>{13.37,63.24};
std::cout << wz << "\n";
return 0;
}
as_cayley_dickson_n_t< 4, T > quaternion_t
Type alias for quaternion numbers.
Definition: quaternion.hpp:27
as_cayley_dickson_n_t< 2, T > complex_t
Type alias for complex numbers.
Definition: complex.hpp:27