ME 488: MATALB Codes for Statistical Computing :: Fall 2009
MATLAB Code Used in ME 488
- ANOVA_oneway.m
- One-way ANOVA for data in two vectors: values and levels
- betap.m
- Cummulative distribution of the beta function (from the StatBox toolbox)
- betaq.m
- Quantiles of the beta distribution (from the StatBox toolbox)
- betar.m
- Random deviates of the beta distribution (from the StatBox toolbox)
- boxPlot.m
- Box-and-whisker plot that does not require the MATLAB statistics toolbox
- fp.m
- Cummulative distribution of the F function (from the StatBox toolbox)
- fq.m
- Quantiles of the F distribution (from the StatBox toolbox)
- stack.m
- Convert a multicolumn matrix to a pair of (values,types) vectors.
The inverse of unstack.
- statbx42.zip
- Zip archive of version 4.2 of the StatBox toolbox.
Check the StatBox home page for details and updates.
- tp.m
- Cummulative distribution of the t function (from the StatBox toolbox)
- tq.m
- Quantiles of the t distribution (from the StatBox toolbox)
- ttest_unequalvar.m
- Student-t test for significance of different means when variances
are not equal and when length of data sets are not equal
- unstack.m
- Convert two vectors of (values,types) pairs to a matrix where each column
has the same type. Requires that all types have equal number of values.
The inverse of stack.