photo

ken


Last seen: circa 3 anni fa Attivo dal 2022

Followers: 0   Following: 0

Programming Languages:
Python

Statistica

MATLAB Answers

7 Domande
0 Risposte

RANK
160.444
of 299.784

REPUTAZIONE
0

CONTRIBUTI
7 Domande
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
42.86%

VOTI RICEVUTI
0

RANK
 of 20.803

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 165.909

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 2

Visualizza badge

Feeds

Visto da

Domanda


How to plot this function with the interval of [-2,2]?

oltre 3 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 3 anni fa | 1 risposta | 0

1

risposta

Domanda


How to plot this equation?

oltre 3 anni fa | 2 risposte | 0

2

risposte

Domanda


How to plot this equation if C is 4?

oltre 3 anni fa | 2 risposte | 0

2

risposte

Domanda


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

oltre 3 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 3 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 3 anni fa | 1 risposta | 0

1

risposta