sinsp_c.h

来自「ROMexamples dsp672x的romboot 例子」· C头文件 代码 · 共 46 行

H
46
字号
/* ======================================================================== *//*  TEXAS INSTRUMENTS, INC.                                                 *//*                                                                          *//*  NAME                                                                    *//*      sinsp -- Single Precision Sine                                      *//*                                                                          *//*S AUTHOR                                                                 S*//*S     Roshan Gummattira                                                  S*//*S                                                                        S*//*S REVISION HISTORY                                                       S*//*S     14-Oct-2002 Initial revision . . . . . . . . . . .  Autogen        S*//*S                                                                        S*//*  USAGE                                                                   *//*      This function is C callable, and is called according to this        *//*      C prototype:                                                        *//*                                                                          *//*      float sinf                                                          *//*      (                                                                   *//*        float a  // Argument 1   //                                       *//*      );                                                                  *//*                                                                          *//*  DESCRIPTION                                                             *//*      This kernel returns the single precision sine of the                *//*      floating point argument a expressed in radians. The return          *//*      value is in the range of [-1,+1].                                   *//*                                                                          *//*  TECHNIQUES                                                              *//*                                                                          *//*  SOURCE                                                                  *//* ------------------------------------------------------------------------ *//*            Copyright (c) 2002 Texas Instruments, Incorporated.           *//*                           All Rights Reserved.                           *//* ======================================================================== */#ifndef SINSP_CN_H_#define SINSP_CN_H_ 1float sinsp_cn(float a);#endif/* ======================================================================== *//*  End of file: sinsp_c.c                                                  *//* ------------------------------------------------------------------------ *//*          Copyright (C) 2002 Texas Instruments, Incorporated.             *//*                          All Rights Reserved.                            *//* ======================================================================== */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?