How can I solve this equations ? Y= ai*X + bi where i ranges from 1 to 3
1 回表示 (過去 30 日間)
古いコメントを表示
Three sets of variable values :
a1=[3 2.5 1.7];
b1=[5.25 3.75 2.125];
a2= [0.875 0.625 0.375];
b2= [9.5 7.5 4.75];
a3= [0 0 0];
b3= [13 8.75 6.25];
I want to solve these two equations for different given values of a and b. i=1 to 3.
Y = ai*X + bi
and,
X0= (Z- bi*A)/ (1+ ai*A)
Here,
Z= 4.2*(B - 2.5)
where,
if E < 17
B = 0.4* E
else
B = 0.0158E+8.1
end
A= 0.3*T
where T is given as
if P<= 29
T = 9+ 0.04 P
else
T= 11.7 +4.64 log10 P
end
1 件のコメント
dpb
2020 年 2 月 25 日
Doesn't make any sense...you could solve the first set for a least squares estimate of slope and intercept (a,b) if the data were the observed X,Y,.
I can't decipher the want for the second part at all, sorry...
Is there some context for the formulation you're trying to describe that might explain from whence this came?
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Foundation and Custom Domains についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!