/// @short Гиперболический катангенс
real_t ctgh(real_t value) { 
	return(real_t(1.) / tgh(value)); 
}
RealTy const ctgh (RealTy const value_)
{
    return (1.0 / tgh (value_));
};