illustration of standard deviationthe less spread


Illustration of Standard Deviation

The less spread out the numbers are, therefore smaller the standard deviation will be, as it is a way of determining the spread of the data. Similarly, the more spread out the numbers are, the bigger the standard deviation will be. For illustration here are two data sets which have similar number of values and also the similar mean, but the standard deviations are quite dissimilar:

>> x1 = [9 10 9.4 9.6];

>> mean(x1)

ans =

    9.5000

>> std(x1)

ans =

    0.4163

>> x2 = [2 17 -1.5 20.5];

>> mean(x2)

ans =

    9.5000

>> std(x2)

ans =

    10.8704

Request for Solution File

Ask an Expert for Answer!!
Applications of MATLAB: illustration of standard deviationthe less spread
Reference No:- TGS0175321

Expected delivery within 24 Hours