Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.0.0 - Русский


ftest

Fisher ratio

Syntax

f=ftest(samples)
[f,p]=ftest(samples)

Arguments

samples

real or complex matrix of type nr X nc

Description

f=ftest(samples) computes the Fisher ratio of the nc samples whose values are in the columns of the matrix samples. Each one of these samples is composed of nr values. (The Fisher ratio is the ratio between nr times the variance of the means of samples and the mean of variances of each sample)

[f,p]=ftest(samples) gives in p the p-value of the computed Fisher ratio f.

References

Wonacott, T.H. & Wonacott, R.J.; Introductory Statistics, J.Wiley & Sons, 1990.

Examples

samples=[46 55 54;
         53 54 50;
         49 58 51;
         50 61 51;
         46 52 49]
[f,p]=ftest(samples)

See also

  • ftuneq — Fisher ratio for samples of unequal size.
Report an issue
<< Hypothesis Testing Hypothesis Testing ftuneq >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Mar 07 09:28:47 CET 2023