求待定系数问题。

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

 Risposta accettata

yepig
yepig il 24 Nov 2022

0 voti

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)

Più risposte (0)

Categorie

Scopri di più su MATLAB in Centro assistenza e File Exchange

Tag

Richiesto:

il 24 Nov 2022

Risposto:

il 24 Nov 2022

Community Treasure Hunt

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

Start Hunting!