photo

Torsten


Last seen: Today Active since 2013

Followers: 10   Following: 0

Statistics

  • Most Accepted 2023
  • Most Accepted 2022
  • Explorer
  • Master
  • 36 Month Streak
  • Revival Level 2
  • Knowledgeable Level 5
  • First Answer

View badges

Feeds

View by

Answered
Coupled ODEs by ode45 and could not get the figures
% Initial conditions Y0 = [298; 0.75; 0.04; 0.015; 0.0331; 0]; % [T0; Xa0; Xc0; Xs0; Z0; Soc0] % Time span tspan = [0 3000]; ...

1 dag ago | 1

Answered
A numerical calculation problem leading to Inf or NaN in matlab
log2(norm(x,lambda)) does not work ?

2 dagen ago | 1

Answered
Hello all, kindly, I have question , how can I get the piecewise function of this blood flow rate shown below using Matlab
T = 0.56; A = 220; fun = @(x)A*sin(2*pi*x/T).*(x>=0 & x<=T/2) + 0*(x>T/2 & x <=0.7); F = @(x)fun(mod(x,0.7)); x = linspace(0...

2 dagen ago | 0

| accepted

Answered
calling function from separate document for fitting
However, when I try to call script 1 from 2, I get a ton of error messages. Could I please ask why is this the problem? You ca...

4 dagen ago | 0

| accepted

Answered
Setting bounds for constants in a fit() object in terms of other constants in the fit object
Use "lsqcurvefit" and set A(1,2) = -1, A(1,3) = 1/min(x) and b(1) = 0 for the linear constraint condition A*x<=b.

4 dagen ago | 0

Answered
How store evolution of x over the iterations of lsqnonlin?
If you can't use the nested approach, define "history" as a persistent variable and call "myoutput" after the computation has fi...

4 dagen ago | 1

Answered
Something doesn't work for me in fit
hist_x=[10 30 50 70 90 110 130 150 170 190 210 230 250,... 270 290 310 330 350 370 3...

4 dagen ago | 0

Answered
simplify and reorganize symbolic expression
The only symbolic function that comes to mind is "coeffs". If this function does not do what you want, I fear you are lost here....

6 dagen ago | 0

| accepted

Answered
help with bvp4c error
Use solinit = bvpinit(x_init,[1 1 phi_c 0]); instead of solinit = bvpinit(x_init,[1 1 phi_c 0],w); Why did you use the w-pa...

7 dagen ago | 0

Answered
Index in position 1 is invalid. Array indices must be positive integers or logical values Error
Array indexing in MATLAB starts with 1, not with 0. But you try to set Pdata(0)=pressure01(0,1); in your nested loop for i = ...

7 dagen ago | 0

Answered
Is this a correct way to use fsolve?
Solve in w^2 instead of w - then there shouldn't be imaginary parts in the solution: F = @(w) ((1-p)/C)*(kappa^q - (w^2)^q)+y+z...

7 dagen ago | 1

| accepted

Answered
Performing Newton's divided difference and trapezoidal rule in one program
I don't know if this is what you want. Your code is very badly structured and hard to follow. Shouldn't x=[2 4 6 8 10 12 14 1...

8 dagen ago | 0

| accepted

Answered
why am I getting this difference in the plotting?
Your choice of a and b must be different from the values you posted: % First method a = 3; b = 0.9; x0 = 0.9; y0 = 1-x0; f...

9 dagen ago | 0

| accepted

Answered
help solving for Delx
qf = 38.6; T1 = 25; e=0.95; s=5.67e-8; K=300; t=0.12; w=3; fun = @(T,delx) [T(1)-T1; qf - K*w*t/delx*(T(1)-T(2)) - 2...

10 dagen ago | 0

| accepted

Answered
problem doing implicit plotting
Remove the dot at the end of the expression x.*y.

10 dagen ago | 1

Answered
Why i am getting blank graph? Can someone help me to figure out error in my code.
is_exam3() function is_exam3 L=0.01; M=0; q=0.5; a=0.03; Pr=0.1; b=0.2; p=0.1; m=0.1; e=1.0; H=0.1; E=0.1; o=0...

10 dagen ago | 0

Answered
How to solve the following PDE equation
I think you mean x(s,0) = 10 instead of x(s,t) = 10, don't you ? The easiest way to solve the equation is to discretize the exp...

11 dagen ago | 0

| accepted

Answered
Matrix is singular to working precision.
Obviously, your matrix is the zero matrix. Most probably the reason is that you don't assign values to K in the loop K(2*cnt-1...

11 dagen ago | 0

Answered
Solving unknown matrics to the power 20
p = [1 0 0 0 0 0 0]; R = [9; 8; 7; 6; 5; 4; 3]; CR = [0.45]; n = 20; TPM = diag([(CR/(p(1)*R(1)))^(1/n),zeros(1,6)]); p*TPM...

12 dagen ago | 0

Answered
Error using pdepe: Spatial discretization has failed. Discretization supports only parabolic and elliptic equations, with flux term involving spatial derivative
"pdepe" is a solver for parabolic-elliptic equations. Thus all equations should have a second-order derivative term in space and...

12 dagen ago | 0

| accepted

Answered
In matlab, although my matrix is ​​full rank, the solution is still incorrect.Ax=b,A(10000*10000),x、b(10000*1)
The condition number of your matrix D is around 1e11 (see above). This is near to singular. I think you cannot expect a better r...

12 dagen ago | 1

Answered
Too many input arguments error
Your function xa and xn have three inputs (n,x,g), not two (n,g). Thus x_func = @(n, g) (xa(n, g)/xn(n, g))^(1/3); % Example T...

12 dagen ago | 0

Answered
solving symbolic equations with partial derivatives
syms Cf(zf,zr) cf(z,theta) L zref = zf; thetaref = (zf - zr)/L; dCfdzf = diff(cf,z) * diff(zref,zf) + diff(cf,theta)*diff(the...

12 dagen ago | 0

Answered
Calculations with distributions of variables only
Look up "Monte-Carlo-Simulation".

13 dagen ago | 0

Answered
Time-dependent dynamic problem with nonlinear stiffness using ode45
You solve for U and Udot - thus you get values for U and Udot from ode45. Simply compute the matrix K(U) with these values and p...

14 dagen ago | 0

Answered
Error: Data must be numeric, datetime, duration, categorical, or an array convertible to double.
% Declaring Theta and Phi Variables theta = 0:0.1:pi/2; % Phi Values phi_E_Plane = 0; phi_H_Plane = pi/2; % Declaring x...

15 dagen ago | 0

Answered
How to solve this differential equation? I got ''Warning: Unable to find symbolic solution.'' error. What am I missing ?
You don't miss anything - your equation is just too complicated to have an analytical solution. You will have to use a numerica...

16 dagen ago | 0

| accepted

Answered
fsolve error: Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.
Include the line size((2.*x_SW(2).*dfreq_SW_vr.*w(1).*g2) + ((1./4).*x_SW(1).*nu).*(f1b.*zet_0_0 + f2b.*eta_0_0).*g1.*cos(gamm...

17 dagen ago | 0

Answered
Overwriting the maximum function evaluation
You didn't include the structure "optim_lsq" in the call to lsqcurvefit.

18 dagen ago | 0

Load more