1 ECE310 – Lecture 23 Random Signal Analysis 04/27/01.

Slides:



Advertisements
Similar presentations
ELEN 5346/4304 DSP and Filter Design Fall Lecture 15: Stochastic processes Instructor: Dr. Gleb V. Tcheslavski Contact:
Advertisements

Introduction to Summary Statistics
Statistical properties of Random time series (“noise”)
Central Limit Theorem.
SUMS OF RANDOM VARIABLES Changfei Chen. Sums of Random Variables Let be a sequence of random variables, and let be their sum:
Fall 2006 – Fundamentals of Business Statistics 1 Chapter 6 Introduction to Sampling Distributions.
Sampling Distributions
Variability Measures of spread of scores range: highest - lowest standard deviation: average difference from mean variance: average squared difference.
Data Transformation Data conversion Changing the original form of the data to a new format More appropriate data analysis New.
CHAPTER 6 Statistical Analysis of Experimental Data
OMS 201 Review. Range The range of a data set is the difference between the largest and smallest data values. It is the simplest measure of dispersion.
Lecture II-2: Probability Review
Modern Navigation Thomas Herring
Continuous Probability Distribution  A continuous random variables (RV) has infinitely many possible outcomes  Probability is conveyed for a range of.
Standard error of estimate & Confidence interval.
Review of Probability.
Chapter 6: Sampling Distributions
BPT 2423 – STATISTICAL PROCESS CONTROL.  Frequency Distribution  Normal Distribution / Probability  Areas Under The Normal Curve  Application of Normal.
Probability Theory and Random Processes
Concepts and Notions for Econometrics Probability and Statistics.
B AD 6243: Applied Univariate Statistics Understanding Data and Data Distributions Professor Laku Chidambaram Price College of Business University of Oklahoma.
Go to Index Analysis of Means Farrokh Alemi, Ph.D. Kashif Haqqi M.D.
Sampling Distributions
1 LES of Turbulent Flows: Lecture 1 Supplement (ME EN ) Prof. Rob Stoll Department of Mechanical Engineering University of Utah Fall 2014.
(c) 2007 IUPUI SPEA K300 (4392) Outline Normal Probability Distribution Standard Normal Probability Distribution Standardization (Z-score) Illustrations.
Introduction to Summary Statistics
Descriptive Statistics II: By the end of this class you should be able to: describe the meaning of and calculate the mean and standard deviation of a sample.
Measures of Variability Objective: Students should know what a variance and standard deviation are and for what type of data they typically used.
JMB Chapter 1EGR Spring 2010 Slide 1 Probability and Statistics for Engineers  Descriptive Statistics  Measures of Central Tendency  Measures.
Mean and Standard Deviation of Discrete Random Variables.
MDM4U Chapter 3 Review Normal Distribution Mr. Lieff.
Section 5.4 Sampling Distributions and the Central Limit Theorem Larson/Farber 4th ed.
Determination of Sample Size: A Review of Statistical Theory
8 Sampling Distribution of the Mean Chapter8 p Sampling Distributions Population mean and standard deviation,  and   unknown Maximal Likelihood.
6.3 THE CENTRAL LIMIT THEOREM. DISTRIBUTION OF SAMPLE MEANS  A sampling distribution of sample means is a distribution using the means computed from.
1 Topic 5 - Joint distributions and the CLT Joint distributions –Calculation of probabilities, mean and variance –Expectations of functions based on joint.
Introduction to Digital Signals
7 sum of RVs. 7-1: variance of Z Find the variance of Z = X+Y by using Var(X), Var(Y), and Cov(X,Y)
Chapter 7 Point Estimation of Parameters. Learning Objectives Explain the general concepts of estimating Explain important properties of point estimators.
Review of Probability. Important Topics 1 Random Variables and Probability Distributions 2 Expected Values, Mean, and Variance 3 Two Random Variables.
Chapter 5 Sampling Distributions. The Concept of Sampling Distributions Parameter – numerical descriptive measure of a population. It is usually unknown.
1 ECE310 – Lecture 22 Random Signal Analysis 04/25/01.
Review of Probability Concepts Prepared by Vera Tabakova, East Carolina University.
Review of Statistical Terms Population Sample Parameter Statistic.
MDH Chapter 1EGR 252 Fall 2015 Slide 1 Probability and Statistics for Engineers  Descriptive Statistics  Measures of Central Tendency  Measures of Variability.
From the population to the sample The sampling distribution FETP India.
Random Variables By: 1.
Biostatistics Class 3 Probability Distributions 2/15/2000.
Statistics and probability Dr. Khaled Ismael Almghari Phone No:
Chapter 6: Sampling Distributions
Chapter 5 Normal Probability Distributions.
Introductory Statistics and Data Analysis
Chapter 7 Review.
1. According to ______ the larger the sample, the closer the sample mean is to the population mean. (p. 251) Murphy’s law the law of large numbers the.
Chapter 2 Appendix Basic Statistics and the Law of Large Numbers.
Probability and Statistics for Engineers
Chapter 7: Sampling Distributions
Chapter 5 Normal Probability Distributions.
Probability and Statistics for Engineers
MEGN 537 – Probabilistic Biomechanics Ch.3 – Quantifying Uncertainty
Histograms REVIEWED Histograms are more than just an illustrative summary of the data sample. Typical examples are shown below (in R: see help(hist) for.
Probability and Statistics for Engineers
Probability and Statistics for Engineers
Probability and Statistics for Engineers
Lecture 1 Cameron Kaplan
Probability and Statistics for Engineers
Probability and Statistics for Engineers
Probability and Statistics for Engineers
Advanced Algebra Unit 1 Vocabulary
Chapter 5 Normal Probability Distributions.
Presentation transcript:

1 ECE310 – Lecture 23 Random Signal Analysis 04/27/01

2 Review The concept of randomness Random signal analysis needs Probability Probability of an event Probability of disjoint events (summation) Probability of independent events (multiplication) Statistics

3 The study of description and interpretation of data A set of data is a sequence of numerical values Discrete random variables Statistics is to use a few well-chosen descriptors to characterize the random variable Descriptors Mean Variance and standard deviation Covariance Histogram Probability density function Power spectral density

4 Mean Sample mean Expected value/Population mean Sample mean is an estimation of population mean Example (brighter/darker) MATLAB: mean()

5 Variance and STD Mean indicates the center of gravity Standard deviation is the square root of variance, indicating how far away is each value from the center of gravity MATLAB: std(), var() Square of mean Mean square

6 Covariance (*) A measure of how much two random variables vary together

7 Histogram A graph indicating what percentage of the time a random variable spends in various ranges of values Example: x=[ ] hist(x)

8 Probability Density Function Raw histogram 1 st normalization Divide each frequency with total number of occurrence – relative frequency It’s the probability!!! 2 nd normalization The width of the bin is approaching to zero It’s the pdf

9

10 % demonstrate histogram, normalized histogram, and pdf rx = randn(1,1000); % 1000 random numbers subplot(221); plot(rx); title('the random numbers'); [M, X] = hist(rx); subplot(222); bar(X, M); title('histogram with 10 bins'); % 10 bins subplot(223); bar(X, M/1000); % first normalization title('normalized histogram'); [M, X] = hist(rx, 200); % 200 bins, bin width getting smaller subplot(224); bar(X, M/1000); title('histogram with 200 bins');

11 Properties of pdf X: the random variable x: value of the random variable  x: the bin width N: total number of random numbers n: the random numbers fall within each bin pdf definition: pdf is a function of x Area under pdf function: x pX(x)pX(x)

12 Central Limit Theorem The pdf of a sum of two random variables is the convolution of their individual pdf’s The shape of the convolution over many independent random variable pdf’s approaches a limiting shape called the “Gaussian” shape

13 Gaussian pdf  x : mean  x : standard deviation Normal distribution mean = 0 std = 1

14 Error Function Gaussian pdf: N~( ,  2 ) erf(x): error function Pr(X<=3)

15 Example Pr(X>3) Pr(3<X<5)

16 Power Spectral Density Problem with pdf? psd and autocorrelation frequency behavior In case of random signal, the only thing we know is the average power of the signal. How to calculate?

17 Summary Probability Prob. of anevent Prob. of independent event Prob. of disjoint event Statistics mean:  = E(x) variance:  2 = E(x 2 )-[E(x)] 2 std:  Histogram pdf Gaussian pdf Error function Autocorrelation and PSD

18 Test 3 Statistics