mat.h
上传用户:luckfish
上传日期:2021-12-16
资源大小:77k
文件大小:1k
源码类别:

语音压缩

开发平台:

Visual C++

  1. /*
  2. 2.4 kbps MELP Proposed Federal Standard speech coder
  3. version 1.2
  4. Copyright (c) 1996, Texas Instruments, Inc.  
  5. Texas Instruments has intellectual property rights on the MELP
  6. algorithm.  The Texas Instruments contact for licensing issues for
  7. commercial and non-government use is William Gordon, Director,
  8. Government Contracts, Texas Instruments Incorporated, Semiconductor
  9. Group (phone 972 480 7442).
  10. */
  11. /* 
  12.    mat.h     Matrix include file.
  13.              (Low level matrix and vector functions.)  
  14.    Copyright (c) 1995 by Texas Instruments, Inc.  All rights reserved.
  15. */
  16. float v_inner(float *v1,float *v2,int n);
  17. float v_magsq(float *v,int n);
  18. float *v_zap(float *v,int n);
  19. float *v_equ(float *v1,float *v2,int n);
  20. float *v_sub(float *v1,float *v2,int n);
  21. float *v_add(float *v1,float *v2,int n);
  22. float *v_scale(float *v,float scale,int n);
  23. int *v_zap_int(int *v,int n);
  24. int *v_equ_int(int *v1,int *v2,int n);