TAU computes critical tau test value for outlier detection tests.

This function computes critical tau value using matlab's "tinv" function.
223 Downloads
Updated 9 Oct 2014

View License

% TAU computes critical tau test value for outlier detection tests.
% Usage: cr_tau=tau(alfa,n,v)
% This function computes critical tau value using matlab's "tinv" function.
%
% Inputs:
% alfa 1-(confidence interval)
% n Number of measurements
% v Degree of freedom (Number of measurements-Number of unknowns)
% Output:
% cr_tau Critical tau test value.
% Requirements:
% Matlab's "tinv" funtion is required.
%
% Example:
% alfa=0.05; Confidence interval is %95
% n=1435; Number of measurements
% v=1429; Degree of freedom (Number of measurements-Number of unknowns)
%
% cr_tau=tau(alfa,n,v);
%
% Written by Ali Ihsan Kurt, Ph.D.
% 10-05-2004.
% E-mail: akurt_74@hotmail.com

Cite As

Ali Ihsan Kurt (2024). TAU computes critical tau test value for outlier detection tests. (https://www.mathworks.com/matlabcentral/fileexchange/44647-tau-computes-critical-tau-test-value-for-outlier-detection-tests), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R11.1
Compatible with any release
Platform Compatibility
Windows macOS Linux
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.1.0.0

Erroneously written line "alfa=0.095:" deleted.

1.0.0.0