![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/adomasbazinysgmailcom_1519558342723_DEF.jpg)
Adomas Bazinys
Followers: 0 Following: 0
Statistiques
6 Questions
0 Réponses
RANG
18 557
of 297 016
RÉPUTATION
2
CONTRIBUTIONS
6 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
33.33%
VOTES REÇUS
1
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
Simpson's rule implementation
function I = simpsons() f=@(x) (3+x.^1/2); a = 1; b = 6; n = 20; disp('n I h') d...
presque 7 ans il y a | 1 réponse | 0
1
réponseQuestion
Change code so that it would generate numbers instead of typing them by user(Gauss method)
function C = Gauss1(A,B) A = [ 8 2 5; 1 5 6; 4 5 6] B = [-1; 4; 5] i = 1; X = [ A B ]; [ nX mX ...
presque 7 ans il y a | 1 réponse | 0
1
réponseQuestion
Bisection method add iteration table into my code
function m = bisection(f, low, high, tol) disp('Bisection Method'); % Evaluate both ends of the interval y1 = feval...
presque 7 ans il y a | 1 réponse | 0
1
réponseQuestion
MATLAB CODE NEWTON METHOD
f = @(x) exp(x)-3*x; fp = @(x) exp(x)-3; x0 = 1; N = 10; tol = 1E-10; x(1) = x0; % Set initial guess n = 2...
presque 7 ans il y a | 5 réponses | 1
5
réponsesQuestion
Need to solve e^x=3*x in tho ways
I need to find an interval, wherein is one solution of given equation. I need to solve equation e^x = 3*x in two ways: using Bis...
presque 7 ans il y a | 1 réponse | 0
1
réponseQuestion
f(x) = e^x-3x matlab code
I want to write a matlab script that finds solutions of function f(x) = e^x - 3x. I tried to write some code. My matlab code sho...
presque 7 ans il y a | 3 réponses | 0