mat.h

来自「2400bpsMELP语音编解码器浮点算法」· C头文件 代码 · 共 35 行

H
35
字号
/*

2.4 kbps MELP Proposed Federal Standard speech coder

version 1.2

Copyright (c) 1996, Texas Instruments, Inc.  

Texas Instruments has intellectual property rights on the MELP
algorithm.  The Texas Instruments contact for licensing issues for
commercial and non-government use is William Gordon, Director,
Government Contracts, Texas Instruments Incorporated, Semiconductor
Group (phone 972 480 7442).


*/

/* 
   mat.h     Matrix include file.
             (Low level matrix and vector functions.)  

   Copyright (c) 1995 by Texas Instruments, Inc.  All rights reserved.
*/

float v_inner(float *v1,float *v2,int n);
float v_magsq(float *v,int n);
float *v_zap(float *v,int n);
float *v_equ(float *v1,float *v2,int n);
float *v_sub(float *v1,float *v2,int n);
float *v_add(float *v1,float *v2,int n);
float *v_scale(float *v,float scale,int n);
int *v_zap_int(int *v,int n);
int *v_equ_int(int *v1,int *v2,int n);

⌨️ 快捷键说明

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