Community Profile

photo

艾伦·史蒂文斯


Last seen: Today|Active since 2020

Statistics

  • 24 Month Streak
  • Guiding Light
  • Knowledgeable Level 5
  • First Answer

View badges

Content Feed

View by

Answered
Getting regression weights from histogram
Something like this perhaps? % Dummy data N = 1000; M = N/40; T = randn(N,1); h = histogram(T,M); W = max(h.Values)-h.Valu...

4 days ago | 0

Answered
Custom fitting using equation from differential function
You equation has the analytical solution y = (A/B)*(1-exp(-B*t)). Use fminsearch to fit the parameters, or the curve fitting to...

12 days ago | 0

Answered
Using the nodal method in ventilation analysis
Try removing J_inv=inv(J); and replacing (J_inv(i,j)*fP(i)) by J(i,j)\fP(i)

13 days ago | 0

|accepted

Answered
Using Euler's method to solve the system of ODEs
Probably easier to keep tabs on what is happening if you simplify as follows: r=2.5; p=2; c=0.1; b=0.1; q=1; k=0.1; h =...

16 days ago | 0

Answered
Error with the SIR Model
Update N at each timestep. Plot I and R on a different scale from S.

16 days ago | 0

Answered
ODE45 returns NaN
t = 0 causes a problem. Try tspan = [0.1 100]; for example.

20 days ago | 0

Answered
How can I do an elliptic curve in Matlab?
Here's one simple way: % y^2 - y = x^3 - x % y = (1 +/- sqrt(4x^3 - 4x + 1))/2 n = 1000; x = -2:1/n:2; d = sqrt(4*x.^3-...

20 days ago | 0

Answered
Phase Portrait of ODE system
Do you mean something like this: % Part IIa. Base Case % Phase Portrait % % r=2.5; p=2; c=0.1; b=0.1; % % [x,v]=meshgr...

29 days ago | 0

Answered
Plot with while loop
By the time you get to the plot command you only have a single value of t1 and a single value of y1 as you overwrite each of the...

1 month ago | 0

|accepted

Answered
How should I approach solving differential equation as function of two variables r, k?
You need to call the ode with something like [t, y] = ode45(@(t,y) deq(t,y,r,k),tVec,y0,r,k); where you pass values of r and k...

1 month ago | 1

Answered
I need help plotting
More like this perhaps: Z1=500; Z2=50; Z3=500; u=1; tau1=(2*Z2)/(Z1+Z2); tau2=(2*Z1)/(Z1+Z2); tau3=(2*Z3)/(Z3+Z2); p1=(Z...

2 months ago | 1

Answered
1D Heat Equation Explicit Scheme
Look at for i=1:(N) if (alpha*DELTA_t)/(DELTA_x^2)<=0.5 T(i,j+1)=T(i,j)+((alpha*DELTA_t)/((DELTA_x)^2))*(...

2 months ago | 1

|accepted

Answered
Solving a system of Second Order Equations
Not sure there is a symbolic solution, but it's easy enough to get a numerical one: tspan = [0 1]; % Start and end times % In...

2 months ago | 1

Answered
How to solve 4th order Runge-Kutta for different initial conditions?
Here's a rather crude method (together with some corrections). You should be able to turn this into a much more elegant version...

2 months ago | 1

|accepted

Answered
1D Heat Equation Explicit Scheme (fixed)
With for i=0:0.1:50 you are trying to index variables with zero. However, Matlab's indexing starts at 1.

2 months ago | 1

Answered
How to plot Homogeneous solution and Particular integral seperately of a second order differntial equation using ode45
ode45 just solves first order equations, so turn your second order equation into two first order ones, like so: y' = v v' = -4...

2 months ago | 0

Answered
Trying to plot R_K 4th order, but keep getting straight line?
Check these equations F_sir = @(s,i,r) -a*s*i; % change the function as you desire G_sir = @(...

2 months ago | 1

|accepted

Answered
Not enough input arguments; fzero function
Replace T_mix = fzero(fun,T_mix_0); by T_mix = fzero(@fun,T_mix_0);

2 months ago | 1

Answered
I am trying to use the trapezoidal rule to compute the flow rate of fluid through a pipe.
I think it needs to be more like this: % Velocity distribution function of the pipe % Area = pi*r^2 % dA = 2*pi*r dr % Q = V...

2 months ago | 0

|accepted

Answered
How to get area under the fit attained by Curve Fitting tool?
Try help trapz

2 months ago | 0

Answered
Progressively slower performance and task constraints using matrix and loops
With these particular functions it's easy to precalculate the Jacobian function and do everything numerically (and quickly). Fo...

2 months ago | 0

Answered
Local Stiffness Matrix Negative
How about replacing if i==2 & j==2 k=A(e)*E/(L/5); elseif i==2 & j==1 k=...

2 months ago | 0

Answered
Save array values in a for loop
Try replacing error = max(abs(double(y1-z1(vx)))) with error(i) = max(abs(double(y1-z1(vx))));

2 months ago | 0

|accepted

Answered
Solving a PDE with two variables using cank nicolson method
Matlab indices start at 1, so the loops i, j and K in the following for i=0:N for j=0:M for K=0:1 f(x,y...

2 months ago | 0

Answered
Solving a System of 2nd Order Nonlinear ODEs
You haven't passed y and z to the funcion in function dydt=mbd(M,m,g,lc,k) Probably needs to be more like function dydt=mbd(t...

2 months ago | 0

Answered
Can I comment only a section or part of a line?
Like this: x = linspace(0,2*pi,100); y1 = sin(x); y2 = cos(x); plot(x,y1,... % comment x,y2)

2 months ago | 0

Answered
Adding subtitle to the plot
In Matlab 2018 try title({'Main title text';'subtitle text'}) (Note the curly brackets)

3 months ago | 0

|accepted

Answered
Left-rotating a vector
You define B as a null vector so it doesn't have an "end". Try, simply A = [1,2,3,4,5]; B = [A(2:end) A(1)]

3 months ago | 0

|accepted

Answered
How can I solve this error : Invalid text character. Check for unsupported symbol, invisible character, or pasting of non-ASCII characters.
This works for me: n=input('donner le nombre de points: '); k=0; for i=1:n u1=rand;u2=rand; x=2*u1; y=2*u2...

3 months ago | 0

Answered
Lax-Wendroff平流方程的方法with periodic boundary condition
If you make dt=0.1*h/a; instead of dt=0.95*h/a; your max error reduces to 0.0355.

3 months ago | 0

Load more