home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 8.ddi / SIGNAL.DI$ / CONTENTS.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  5.0 KB  |  125 lines

  1. % Signal Processing Toolbox.
  2. % Version 2.0b  13-Nov-92
  3. % Copyright (c) 1988-92 by The MathWorks, Inc.
  4. %
  5. % Analog lowpass filter prototypes.
  6. %   buttap     - Butterworth filter prototype.
  7. %   cheb1ap    - Chebyshev type I filter prototype (passband ripple).
  8. %   cheb2ap    - Chebyshev ty[pe II filter prototype (stopband ripple).
  9. %   ellipap    - Elliptic filter prototype.
  10. %
  11. % IIR digital filter design.
  12. %   butter     - Butterworth filter design.
  13. %   cheby1     - Chebyshev type I filter design.
  14. %   cheby2     - Chebyshev type II filter design.
  15. %   ellip      - Elliptic filter design.
  16. %   yulewalk   - Yule-Walker filter design.
  17. %
  18. % FIR filter design.
  19. %   fir1       - Window based FIR filter design - low, high, band, stop.
  20. %   fir2       - Window based FIR filter design - arbitrary response.
  21. %   remez      - Parks-McClellan optimal FIR filter design.
  22. %
  23. % Filter order selection.
  24. %   buttord    - Butterworth filter order selection.
  25. %   cheb1ord   - Chebyshev type I filter order selection.
  26. %   cheb2ord   - Chebyshev type II filter order selection.
  27. %   ellipord   - Elliptic filter order selection.
  28. %
  29. % Filter transformations.
  30. %   bilinear   - Bilinear transformation with optional prewarping.
  31. %   lp2bp      - Lowpass to bandpass analog filter transformation.
  32. %   lp2bs      - Lowpass to bandstop analog filter transformation.
  33. %   lp2hp      - Lowpass to highpass analog filter transformation.
  34. %   lp2lp      - Lowpass to lowpass analog filter transformation.
  35. %   ss2zp      - State-space to zero-pole conversion.
  36. %   tf2ss      - Transfer function to state-space conversion.
  37. %   zp2ss      - Zero-pole to state-space conversion.
  38. %
  39. % Filter analysis and implementation.
  40. %   abs        - Magnitude.
  41. %   angle      - Phase angle.
  42. %   filter     - Filter implementation.
  43. %   filtfilt   - Zero-phase version of filter.
  44. %   fftfilt    - Overlap-add filter implementation.
  45. %   filtic     - Determine filter initial conditions.
  46. %   freqs      - Laplace transform frequency response.
  47. %   freqz      - Z-transform frequency response.
  48. %   grpdelay   - Group delay.
  49. %   unwrap     - Unwrap phase.
  50. %
  51. % Parametric Modeling.
  52. %   invfreqs   - Analog filter fit to frequency response.
  53. %   invfreqz   - Discrete filter fit to frequency response.
  54. %   prony      - Prony's discrete filter fit to time response.
  55. %   ident      - See also the Identification Toolbox.
  56. %
  57. % Spectral analysis.
  58. %   cceps      - Complex cepstrum.
  59. %   czt        - Chirp-z transform.
  60. %   detrend    - Linear trend removal.
  61. %   fft        - Fast Fourier transform.
  62. %   fftshift   - Swap vector halves.
  63. %   hilbert    - Hilbert transform.
  64. %   ifft       - Inverse fast Fourier transform.
  65. %   czt        - Chirp-z transform.
  66. %   rceps      - Real cepstrum and minimum pahse reconstruction.
  67. %   specplot   - Plot output of spectrum function.
  68. %   specgram   - Spectrogram, for speech signals.
  69. %   spectrum   - Power spectrum estimate, Welch method.
  70. %
  71. % Correlation and convolution.
  72. %   conv       - Convolution.
  73. %   corrcoef   - Correlation coefficients.
  74. %   cov        - Covariance matrix.
  75. %   deconv     - Deconvolution.
  76. %   xcorr      - Cross-correlation function.
  77. %   xcov       - Covariance function.
  78. %
  79. % Two-dimensional signal and image processing.
  80. %   conv2      - 2-D convolution.
  81. %   fft2       - 2-D fast Fourier transform.
  82. %   fftshift   - Swap quadrants of array.
  83. %   ifft2      - Inverse 2-D fast Fourier transform.
  84. %   xcorr2     - 2-D cross-correlation.
  85. %
  86. % Windows.
  87. %   bartlett   - Bartlett window.
  88. %   blackman   - Blackman window.
  89. %   boxcar     - Rectangular window.
  90. %   chebwin    - Chebyshev window.
  91. %   hamming    - Hamming window.
  92. %   hanning    - Hanning window.
  93. %   kaiser     - Kaiser window.
  94. %   triang     - Triangular window.
  95. %
  96. % Decimation and interpolation.
  97. %   decimate   - Resample data at a lower sample rate.
  98. %   interp     - Resample data at a higher sample rate.
  99. %   interp1    - General 1-D interpolation.
  100. %
  101. % Other.
  102. %   stem       - Plot discrete data sequence.
  103. %   convmtx    - Convolution matrix.
  104. %   cplxpair   - Order vector into complex conjugate pairs.
  105. %   dftmtx     - Discrete Fourier transform matrix.
  106. %   mpoles     - Identify repeated poles and their multiplicities.
  107. %   polystab   - Polynomial stabilization.
  108. %   residuez   - Z-transform partial fraction expansion.
  109. %   sawtooth   - Sawtooth function.
  110. %   square     - Square wave function.
  111.  
  112. % Utilities.
  113. %   abcdchk    - Check consistency of (A,B,C,D) set.
  114. %   comb       - Same as stem - for backward compatibility.
  115. %   denf       - Denominator from covariances for YULEWALK.
  116. %   filtdemo   - Filter design demonstration.
  117. %   kratio     - Utility for ELLIP.
  118. %   nargchk    - Check number of M-file arguments.
  119. %   numf       - Find numerator from impulse response for YULEWALK.
  120. %   rcunwrap   - Phase unwrap specific to the real cepstrum.
  121. %   remezdd    - Lagrange interpolation coefficients for REMEZ.
  122. %   vratio     - Utility for ELLIP.
  123. %   Copyright (c) 1982-92 by The MathWorks, Inc.
  124. %   All rights reserved.
  125.