how to fix this
Afficher commentaires plus anciens
% Function to perform Regula-Falsi method
function root = regula_falsi(f, a, b,tol)
fa = f(a);
fb = f(b);
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!