coshf.c 763 Bytes
/*
=============================================================================
        Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
        
        $RCSfile: coshf.c,v $
        $Revision: 1.1.1.1 $
        $Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:coshf
-----------------------------------------------------------------------------
書式:  #include <math.h>
        float coshf(float t);
引数:  t ラディアン角
戻り値:引数 t の双曲線コサイン
説明:  引数 t の双曲線コサインを求める
-----------------------------------------------------------------------------
*/
#include "math.h"

float coshf(float t)
{
    float   p, m;
    
    p = expf(t);
    m = expf(-t);
    return (p+m)/2;
}