blob: 8fabc2394b491b080db138c33bdea01a34ed8253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//to find standard deviation and probability of error
clc;
p=.2;
x=.8;
t=.5025;
sd=x/t;
disp(sd,'stndard deviation');
x=1.2;
t=x/sd;
p=2*.2743;
disp(p,'probability of error');
|