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

 Réponse acceptée

yepig
yepig le 24 Nov 2022

0 votes

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)

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!