📄 dspf_sp_vecsum_sq.h
字号:
/* ======================================================================== */
/* TEXAS INSTRUMENTS, INC. */
/* */
/* NAME */
/* DSPF_sp_vecsum_sq -- Single Precision sum of squares */
/* */
/* USAGE */
/* */
/* This routine is C callable, and has the following C prototype: */
/* */
/* float DSPF_sp_vecsum_sq(const float *x, */
/* int n */
/* ) */
/* */
/* x : Pointer to first input array */
/* n : Number of elements in arrays */
/* */
/* DESCRIPTION */
/* */
/* This routine performs a sum of squares of the elements of the */
/* array x and returns the sum. */
/* */
/* ------------------------------------------------------------------------ */
/* Copyright (c) 2003 Texas Instruments, Incorporated. */
/* All Rights Reserved. */
/* ======================================================================== */
#ifndef DSPF_SP_VECSUM_SQ_
#define DSPF_SP_VECSUM_SQ_ 1
float DSPF_sp_vecsum_sq(const float * x, int n);
#endif
/* ======================================================================== */
/* End of file: dspf_sp_vecsum_sq.h */
/* ------------------------------------------------------------------------ */
/* Copyright (C) 2003 Texas Instruments, Incorporated. */
/* All Rights Reserved. */
/* ======================================================================== */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -