T is the temp of the body.
Matlab Code:
A = [-10 -1;-20 -1]
b = [log(30);log(15)]
x = inv(A)*b
u = x(2)
y = exp(-u)
T = 30-y
Output:
A =
-10 -1
-20 -1
b =
3.4012
2.7081
x =
0.0693
-4.0943
u =
-4.0943
y =
60.0000
T =
-30.0000
Get Answers For Free
Most questions answered within 1 hours.