Community Profile

photo

Sam


Active since 2014

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Question


Is this algorithm correct?
%% Part 1: Crout factorization n=10 A = full(gallery('tridiag',n,-1,2,-1)) i = 2:(n-1); bmid = i.^2 / ((n+1).^4) b = [1...

10 years ago | 1 answer | 0

1

answer

Question


Codes for Gauss Seidel Method
I am looking for matlab codes for the following... Write a program that takes a value for n and solves for x using the follow...

10 years ago | 1 answer | 0

1

answer

Question


How to write this b in matrix form
<</matlabcentral/answers/uploaded_files/11733/Screen%20Shot%202014-04-22%20at%203.38.51%20PM.png>> Can anyone help me write t...

10 years ago | 1 answer | 0

1

answer

Question


How do you apply secant method in matlab
Ok here is my another question about the logistic map. So, to find the 2nd bifurcation value, I need to apply secant method ...

10 years ago | 0 answers | 0

0

answers

Question


What's wrong with this code?
I am getting this error msg. Please find me the mistakes here. In an assignment A(I) = B, the number of elements in B and I...

10 years ago | 2 answers | 0

2

answers

Question


Plotting f(x) as a function of x logistic map
Logistic map x_(n+1)=f(x_n); f(x_n)=r*X(1-x) so here is what I've done: r=2.0; x(1)=0.3 f=r.*x.*(1-x) And, matlab givin...

10 years ago | 2 answers | 0

2

answers

Question


Why matlab giving me same values too many times
Ok my input function was r=2; x(1)=0.3; N=100 for i=1:N x(i+1)=r*x(i)*(1-x(i)) end And, matlab calculated my answer...

10 years ago | 2 answers | 0

2

answers

Question


Matlab code for Euler's method
This is my first time using matlab and I need to know matlab code for this IVP where y' = 3y, y(1) = 2, 1=<t=<2, h = 0.5. So...

10 years ago | 1 answer | 0

1

answer