我现在有一个函数(t为自变量,F为因变量)
log(log(1/(1-F))) = Blnt-BlnN
想通过两组数如:F=23,t=17和F=52,t=12求出系数B和N
请问怎么做

 採用された回答

yepig
yepig 2022 年 11 月 24 日

0 投票

solve 求解方程即可
syms B N
F = [23 52].';
t = [17 12].';
eqs = B*(log(t)-log(N))-log(log(1./(1-F)));
[B, N] = solve(eqs)

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

質問済み:

2022 年 11 月 24 日

回答済み:

2022 年 11 月 24 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!