how to fix this
Mostrar comentarios más antiguos
% Function to perform Regula-Falsi method
function root = regula_falsi(f, a, b,tol)
fa = f(a);
fb = f(b);
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Deep Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!