how to fix this
Ältere Kommentare anzeigen
% Function to perform Regula-Falsi method
function root = regula_falsi(f, a, b,tol)
fa = f(a);
fb = f(b);
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!