photo

Adomas Bazinys


Aktiv seit 2018

Followers: 0   Following: 0

Statistik

MATLAB Answers

6 Fragen
0 Antworten

RANG
18.557
of 300.343

REPUTATION
2

BEITRÄGE
6 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
33.33%

ERHALTENE STIMMEN
1

RANG
 of 20.926

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.172

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 2
  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Simpson's rule implementation
function I = simpsons() f=@(x) (3+x.^1/2); a = 1; b = 6; n = 20; disp('n I h') d...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 7 Jahre vor | 5 Antworten | 1

5

Antworten

Frage


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

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 7 Jahre vor | 3 Antworten | 0

3

Antworten