mat.h
来自「melp1.2.tar_Floating.gz为美军2400bps语音压缩编码」· 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 + -
显示快捷键?