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

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