Home > freetb4matlab > statistics > geostat.m

geostat

PURPOSE ^

% Compute mean and variance of the geometric distribution.

SYNOPSIS ^

function [m, v] = geostat (p)

DESCRIPTION ^

% -*- texinfo -*-
% @deftypefn {Function File} {[@var{m}, @var{v}] =} geostat (@var{p})
% Compute mean and variance of the geometric distribution.
%
% @subheading Arguments
%
% @itemize @bullet
% @item
% @var{p} is the rate parameter of the geometric distribution. The
% elements of @var{p} must be probabilities
% @end itemize
%
% @subheading Return values
%
% @itemize @bullet
% @item
% @var{m} is the mean of the geometric distribution
%
% @item
% @var{v} is the variance of the geometric distribution
% @end itemize
%
% @subheading Example
%
% @example
% @group
% p = 1 ./ (1:6);
% [m, v] = geostat (p)
% @end group
% @end example
%
% @subheading References
%
% @enumerate
% @item
% Wendy L. Martinez and Angel R. Martinez. @cite{Computational Statistics
% Handbook with MATLAB}. Appendix E, pages 547-557, Chapman & Hall/CRC,
% 2001.
%
% @item
% Athanasios Papoulis. @cite{Probability, Random Variables, and Stochastic
% Processes}. McGraw-Hill, New York, second edition, 1984.
% @end enumerate
% @end deftypefn

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003