MATLAB Statistical Analysis

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:07 AM on 8/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

Descriptive Statistics

Descriptive statistics are numerical and graphical methods used to summarize and describe the important characteristics of observed data.

2
New cards

Data Distribution

A data distribution describes how observed values are spread across their possible values, including their center, variability, and overall shape.

3
New cards

Normal Distribution

The normal distribution is a continuous, symmetric, bell-shaped probability distribution characterized by its mean and standard deviation.

4
New cards

Probability Density Function (PDF)

A probability density function describes the relative likelihood of values for a continuous random variable. Probabilities are obtained from areas under the density curve over intervals.

5
New cards

normpdf

normpdf evaluates the probability density function of a normal distribution at specified values.

6
New cards

Cumulative Distribution Function (CDF)

A cumulative distribution function gives the probability that a random variable is less than or equal to a specified value.

7
New cards

normcdf

normcdf evaluates the cumulative distribution function of a normal distribution at specified values.

8
New cards

Quantile

A quantile is a value that divides an ordered probability distribution or dataset so that a specified proportion of observations lies at or below that value.

9
New cards

quantile

quantile returns specified quantiles of data, such as quartiles or other percentile-based locations.

10
New cards

Histogram

A histogram displays the distribution of numerical data by dividing values into intervals and showing the number of observations in each interval.

11
New cards

histogram

histogram creates a histogram of numerical data in MATLAB for visualizing its distribution.

12
New cards

Box Plot

A box plot summarizes a dataset using its median, quartiles, spread, and potential outliers.

13
New cards

boxchart

boxchart creates box plots in MATLAB for visually comparing the distributions of numerical data.

14
New cards

Hypothesis Test

A hypothesis test uses sample data to evaluate evidence about a claim concerning a population or probability distribution.

15
New cards

Null Hypothesis

The null hypothesis (H₀) is the baseline statistical claim tested using sample data and is rejected only when sufficient evidence exists against it.

16
New cards

Alternative Hypothesis

The alternative hypothesis (H₁ or Hₐ) represents the competing claim supported when sufficient evidence exists to reject the null hypothesis.

17
New cards

Significance Level

The significance level (α) is the predetermined probability threshold used to decide whether evidence against the null hypothesis is statistically significant.

18
New cards

p-Value

A p-value is the probability, assuming the null hypothesis is true, of obtaining a test statistic at least as extreme as the observed result.

19
New cards

Statistical Significance

A result is statistically significant when its p-value satisfies the chosen significance criterion, commonly p ≤ α.

20
New cards

h Test Decision

In MATLAB hypothesis-testing functions, h commonly represents the test decision: h = 1 indicates rejection of the null hypothesis, while h = 0 indicates failure to reject it at the chosen significance level.

21
New cards

ttest

ttest performs a one-sample t-test or paired-sample t-test, depending on the supplied inputs, to evaluate a hypothesis about a population mean or paired mean difference.

22
New cards

ttest2

ttest2 performs a two-sample t-test for comparing the means of two independent populations.

23
New cards

Normality Assessment

Normality assessment evaluates whether observed data are reasonably consistent with a normal distribution.

24
New cards

Probability Plot

A probability plot compares observed data with a theoretical probability distribution to visually assess how well the distribution describes the data.

25
New cards

probplot

probplot creates a probability plot for comparing sample data with a specified theoretical probability distribution.