mat.h

来自「这是本人从国外网站上搜索到的一份MELP源代码,但没经过本人测试,奉献出来,与大」· C头文件 代码 · 共 35 行

H
35
字号
/*2.4 kbps MELP Proposed Federal Standard speech coderversion 1.2Copyright (c) 1996, Texas Instruments, Inc.  Texas Instruments has intellectual property rights on the MELPalgorithm.  The Texas Instruments contact for licensing issues forcommercial and non-government use is William Gordon, Director,Government Contracts, Texas Instruments Incorporated, SemiconductorGroup (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 + -
显示快捷键?