home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / SPARFUN.DI$ / CONTENTS.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  2.0 KB  |  55 lines

  1. % Sparse matrix functions.
  2. %
  3. % Elementary sparse matrices.
  4. %   speye       - Sparse identity matrix.
  5. %   sprandn     - Sparse random matrix.
  6. %   sprandsym   - Sparse symmetric random matrix.
  7. %   spdiags     - Sparse matrix formed from diagonals.
  8. %
  9. % Full to sparse conversion.
  10. %   sparse      - Create sparse matrix from nonzeros and indices.
  11. %   full        - Convert sparse matrix to full matrix.
  12. %   find        - Find indices of nonzero entries.
  13. %   spconvert   - Convert from sparse matrix external format.
  14. %
  15. % Working with nonzero entries of sparse matrices.
  16. %   nnz         - Number of nonzero entries.
  17. %   nonzeros    - Nonzero entries.
  18. %   nzmax       - Amount of storage allocated for nonzero entries.
  19. %   spones      - Replace nonzero entries with ones.
  20. %   spalloc     - Allocate memory for nonzero entries.
  21. %   issparse    - True if matrix is sparse.
  22. %   spfun       - Apply function to nonzero entries.
  23. %
  24. % Visualizing sparse matrices.
  25. %   spy         - Visualize sparsity structure.
  26. %   gplot       - Plot graph, as in "graph theory".
  27. %
  28. % Reordering algorithms.
  29. %   colmmd      - Column minimum degree.
  30. %   symmmd      - Symmetric minimum degree.
  31. %   symrcm      - Reverse Cuthill-McKee ordering.
  32. %   colperm     - Order columns based on nonzero count.
  33. %   randperm    - Random permutation vector.
  34. %   dmperm      - Dulmage-Mendelsohn decomposition.
  35. %
  36. % Norm, condition number, and rank.
  37. %   normest     - Estimate 2-norm.
  38. %   condest     - Estimate 1-norm condition.
  39. %   sprank      - Structural rank.
  40. %
  41. % Operations on trees.
  42. %   treelayout  - Lay out a tree or forest.
  43. %   treeplot    - Plot a picture of a tree.
  44. %   etree       - Elimination tree of a matrix.
  45. %   etreeplot   - Plot the elimination tree.
  46. %
  47. % Miscellaneous.
  48. %   symbfact    - Symbolic factorization analysis.
  49. %   spparms     - Set parameters for sparse matrix routines.
  50. %   spaugment   - Form least squares augmented system.
  51.  
  52. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  53.  
  54.  
  55.