-
Notifications
You must be signed in to change notification settings - Fork 1
/
beta.m
33 lines (33 loc) · 850 Bytes
/
beta.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
function beta_cal=beta(x,y)
switch (x)
case 0
switch (y)
case 0
salida=0;
case 1
salida=0;
otherwise
error(['El segundo parametro solo acepta valores 1 y 2']);
end
case 1
switch (y)
case 0
salida=0;
case 1
salida=1;
otherwise
error(['El segundo parametro solo acepta valores 1 y 2']);
end
case 2
switch (y)
case 0
salida=1;
case 1
salida=1;
otherwise
error(['El segundo parametro solo acepta valores 1 y 2']);
end
otherwise
error(['El primer parametro solo acepta valores 1, 2 y 3']);
end
beta_cal=salida;