![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/25397031_1643042949825_DEF.jpg)
ken
Followers: 0 Following: 0
Python
Statistiques
7 Questions
0 Réponses
RANG
113 797
of 297 016
RÉPUTATION
0
CONTRIBUTIONS
7 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
42.86%
VOTES REÇUS
0
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 157 725
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
How to plot this function with the interval of [-2,2]?
presque 3 ans il y a | 2 réponses | 0
2
réponsesQuestion
Use the bisection method to approximate the first negative solution, the negative root that is closest to the origin. The accuracy must be of the order 10−4.
the given bisection code. and the given equation() function [c, n, err] = bisection_method(f, a, b, tol, N) c = []; n...
presque 3 ans il y a | 1 réponse | 0
1
réponseQuestion
How to find first negative solution with the bisection method
f(x) = x + 1 −2 sin(πx) = 0 How to find first negative solution with the given bisection method function [c, n, err] = Bisect...
presque 3 ans il y a | 1 réponse | 0
1
réponseQuestion
How to plot the y and t?
a = 0; b = 10; h = 10^-3; N = (b-a)/h; alpha = 1; f = @(x,y) 1/y^3; function [y,t] = rk4(f,a,b,alpha,N) t = []; y = ...
presque 3 ans il y a | 1 réponse | 0
1
réponseQuestion
return column vector (t(i+1) & y(i+1)) instead of row vector
function [y,t] = euler_timestep(f,t0,tf,alpha,N) h=(tf-t0)/N; t(1)=t0; y(1)=alpha; for i=1:N t(i+1)=t(i)+h; ...
presque 3 ans il y a | 1 réponse | 0