help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Anders Holtsberg
Date: Wed, 6 Sep 95 21:05:30 +0200

  ===== DA-DA-DA DAAAAA =================================

  Since many people asked me to port some of my statistics 
  stuff to octave I did so. A contents-file is attached 
  to this mail. The files are tar-ed and can be feched
  in two ways and four formats.

http://www.maths.lth.se/matstat/andersh/stixoct.tar
                                       /stixoct.tar.Z
                                       /stixoct.tar.Z.uu
                                       /stixoct.tar.uu
ftp://ftp.maths.lth.se/pub/transfer/andersh/stixoct.tar  et.c.

  Note that it is a quick hack and that spurious warning
  messages and matlab non-octave portable code are still
  there. I have however removed all routines that do not
  work at all with octave.

  Best wishes,

  Andy

======= Anders Holtsberg ====================== http://www.maths.lth.se ===
  . .:  Department of Mathematical Statistics   phone  +46 46 108543    ..
.: :.   Box 118, Lund Institute of Technology   fax    +46 46 104623   :.
======= S-221 00 Lund, Sweden ================= address@hidden ======

% == OCTAVE QUICK HACK !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
%
% A rudimentary statistics toolbox.
% Version 1.03-OCTAVE, 6-Sep-95
% Copyright (c) Anders Holtsberg.
% Comments and suggestions to address@hidden
%
% Distribution functions.
%   dbeta     - Beta density function.
%   dchisq    - Chisquare density function.
%   df        - F density function.
%   dgamma    - Gamma density function.
%   dnorm     - Normal density function.
%   dt        - Student t density function.
%
%   pbeta     - Beta distribution function.
%   pchisq    - Chisquare distribution function.
%   pf        - F distribution function.
%   pgamma    - Gamma distribution function.
%   pnorm     - Normal distribution function.
%   pt        - Student t cdf.
%
%   qbeta     - Beta inverse distribution function.
%   qchisq    - Chisquare inverse distribution function.
%   qf        - F inverse distribution function.
%   qgamma    - Gamma inverse distribution function.
%   qnorm     - Normal inverse distribution function.
%   qt        - Student t inverse distribution function.
%
%   rbeta     - Random numbers from the beta distribution.
%   rchisq    - Random numbers from the chisquare distribution.
%   rf        - Random numbers from the F distribution
%   rgamma    - Random numbers from the gamma distribution.
%   rnorm     - Normal random numbers (use randn instead).
%   rt        - Random numbers from the student t distribution.
%
% Logistic regression.
%   logitfit  - Fit a logistic regression model.
%   lodds     - Log odds function.
%   loddsinv  - Inverse of log odds function.
%
% Various functions.
%   getdata   - Some famous multivariate data sets.
%   quantile  - Empirical quantile (percentile).

% Tests, confidence intervals, and model estimation.
%   cmpmod    - Compare small linear model versus large one.
%   lsfit     - Fit a least squares model.
%   lsselect  - Select a predictor subset for regression.
%   test1n    - Tests and confidence intervals, one normal sample.
%   test1r    - Test for median equals 0 using rank test.
%   test2n    - Tests and confidence intervals, two normal samples.
%   test2r    - Test for equal location of two samples using rank test.
%
% Graphics.
%   qqnorm    - Normal probability paper.
%   qqplot    - Plot empirical quantile vs empirical quantile.
%   linreg    - Linear or polynomial regression, including plot.
%   histo     - Plot a histogram (alternative to hist).
%   plotdens  - Draw a nonparametric density estimate.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]