photo

Aman Pratap Singh


Last seen: plus d'un an il y a Actif depuis 2021

Followers: 0   Following: 0

Message

Spoken Languages:
English

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
finding root using false position method
clc % Setting x as symbolic variable syms x; % Input Section y = input('Enter non-linear equations: '); a = input('Ente...

plus de 2 ans il y a | 0

Réponse apportée
Bisection Method Code Mathlab
f = @(x)('x^3-2x-5'); a = 2; b = 3; eps = 0.001; m = (a+b)/2; fprintf('\nThe value of, after bisection method, m is %f\n',...

plus de 2 ans il y a | 0