Risposto
How to solve this 4th order linear ODE with ode45?
You need to define tspan x_1_0 = [2; 1/2; 0; 0]; tspan = [0 10]; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% [t_1,x_1] = ode45(@f, tsp...

circa 5 anni fa | 0

Risposto
Theta phi positive and negative conventions and conversions
Try mod(theta,180) and mod(phi,360)

circa 5 anni fa | 0

| accettato

Risposto
I'm trying to solve Bernoulli equation in differential form.
If p is constant then dp/dx = 0, hence du/dx = 0, which means u is constant. If you meant the pressure gradient is constant the...

circa 5 anni fa | 0

| accettato

Risposto
How to use figure out steady state during ODE
Try ix = find(Y(:,1)==max(Y(:,1)),1) disp(T(ix)) after your plot command.

circa 5 anni fa | 1

| accettato

Risposto
Runge-Kutta integration of the Taylor-Maccoll eq
Shouldn't k1 = h*F1(t, y1(i), y2(i)); m1 = h*F1(t, y1(i), y2(i)); k2 = h*F2(t+0.5*h, y1(i)+0.5*h, y2(i...

circa 5 anni fa | 0

| accettato

Risposto
How can I shade the area between a curve and a vertical line?
Try help fill or help patch Although they refer to polygons, you could easily represent your curve as a multi-segment polyg...

circa 5 anni fa | 0

Risposto
Finding best parametric function estimation for ODE of first order
First plot the points, ui vs xi to see what sort of curve it might be. If it looks like it could be a polynomial (as in the cas...

circa 5 anni fa | 1

Risposto
Impose a numerical limit on the value of a sum of two vectors
One possibility is min(max(a1),a1+a2)

circa 5 anni fa | 1

| accettato

Risposto
How read Matrix Market data into MATLAB?
Do you mean like this: %%MatrixMarket matrix coordinate real symmetric % System: M x_dotdot + E x_dot + K x = B u % y...

circa 5 anni fa | 0

Risposto
rounding the imaginary part of the number
Z = 0.0000e+00 + 7.8765e-04*1i; format shortG round(Z,4)

circa 5 anni fa | 1

| accettato

Risposto
How can I model second order ODE with matrices and external forcing?
Like this perhaps (I've made up arbitrary data; you will obviously have to replace it with your own) x0 = [1; -1]; v0 = [0; 0]...

circa 5 anni fa | 0

Risposto
Randomisation of ramberg osgood equation
You don't need a loop. Yu can just do deltaepsilon = r/E + 2*(r/(2*Kp)).^(1/np); where Kp = K' and np = n'. Note that you nee...

circa 5 anni fa | 0

Risposto
How to solve a ode within a for loop?
Like this A = 0:0.05:0.35; tspan = 0: 0.1: 1; p32 = zeros(length(tspan),length(A)); r = 0.7; r0 = 2; p0 = [r; r0]; for k ...

circa 5 anni fa | 0

| accettato

Risposto
How can I solve a system of equations with exponential terms in Matlab?
There is almost certainly no analytical solution here! For a numerical solution (given the values of the other parameters), try...

circa 5 anni fa | 0

Risposto
To find integral of a function in loop
Try replacing q = integral(f,6e-7, x); with q(i) = integral(f,6e-7, x(i));

circa 5 anni fa | 0

| accettato

Risposto
Numerical integration of the missile dynamic model
I don't know the actual problem, but if you look at your values of Y against time you will see that some of them are clearly div...

circa 5 anni fa | 0

| accettato

Risposto
Monte Carlo simulation for probability of a multi part machine working
Here's one possibility: % each A part works 98% of the time. Each B works 91% of the time. % The machine has 12A and 7B parts....

circa 5 anni fa | 0

| accettato

Risposto
Need help on using trapz on a definite integral
Replace Final = Nach + Vor; by Final(i) = Nach + Vor;

circa 5 anni fa | 0

Risposto
Multiple parameter Non Linear Curve Fit- Error using ^
You probably need to use element by element multiplication and division etc in your definition of fun. I.e. use a.*b and a...

circa 5 anni fa | 0

| accettato

Risposto
How to separate plot titles on single line? [solved]
Define the titles with an extra space at the end of each word.

circa 5 anni fa | 0

Risposto
Plotting to test probability convergence
See my reply to your question at https://uk.mathworks.com/matlabcentral/answers/871048-how-to-do-integration-of-this-equation-an...

circa 5 anni fa | 0

| accettato

Risposto
How to do integration of this equation and plot graph between T and y
Like this perhaps: u=0.020; x=0.025; z=0; t=5; eta= 0.6; P=200; C=500; ro= 1000; l=0.008; Alpha=17e-6; r = 0.01; % Gu...

circa 5 anni fa | 0

| accettato

Risposto
Making relative histogram for data, and a convergence diagram to see if enough trials have been run for monte carlo simulation.
Something like the following? N = 1000; Throwsum = zeros(N,1); Relativefreq = zeros(N,1); count = 0; for i=1:1000 throwD...

circa 5 anni fa | 0

| accettato

Risposto
Runge Kutta and Binary Search to analyze system of ODEs
At the moment you have dj/dt = -K*d0^2; which means rate of reduction of radius is constant. Since d0^2 is a constant this m...

circa 5 anni fa | 0

| accettato

Risposto
Gaussian Curve Plotting Issues
If you have 10000 individuals with a probability of 0.013 of being in group A, you would expect your curve to peak close to 130 ...

circa 5 anni fa | 0

Risposto
Solve equation with 2 unknowns using solve
There are an infinite number of solutions! Restrict the range. One possibility is as follows bfn = @(a) acos(1.6-cos(a)); fn...

circa 5 anni fa | 1

Risposto
Is this formula correct for simulate 3D Water rocket
Probably vy = v0*cos(alpha); should be more like vy = v0*cos(alpha)*cos(beta); where beta is an angle that will point the r...

circa 5 anni fa | 0

Risposto
Need to Produce a different size matrix on each iteration
Try the following wqe=[1;2;3;4;5;6;7;8;9;10;11;12;13;14;15]; kli=[51;52;53;54;55;56;57;58;59;60;61;62;63;64;65]; hsd=size(kli...

circa 5 anni fa | 0

| accettato

Risposto
Getting error using syms to implement power formula
Like this? % Arbitrary values - replace with your own fs = 1; x_h = @(n) 1/(n+10)^2; %Power formula syms N...

circa 5 anni fa | 0

| accettato

Risposto
Solving a system of 12 ode’s with discrete data using Euler method
Look up interp1 doc interp1

circa 5 anni fa | 0

| accettato

Carica altro