photo

Aman Pratap Singh


Last seen: mehr als ein Jahr vor Aktiv seit 2021

Followers: 0   Following: 0

Nachricht

Spoken Languages:
English

Statistik

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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...

mehr als 2 Jahre vor | 0

Beantwortet
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',...

mehr als 2 Jahre vor | 0