Respondida
How to write a script to test central limit theory
rng('default') n=10; r=sum(randi(6,1000,10),2); m=mean(r); s=std(r); hold on histogram((r-m)/s,15,'Normalization','pdf') ...

casi 4 años hace | 0

Respondida
how to define a matrix element in matlab
A=[1 2; 3 4]; B=[5 6; 7 8; 9 1; 1 4]; B(1:2,1:2) = A; B

casi 4 años hace | 0

Respondida
Can i fix a sum of vector generated by Distribution Poisson?
Fix the random seed: https://de.mathworks.com/help/matlab/ref/rng.html rng('default') % e.g. lambda = 1/7; v = poissrnd(la...

casi 4 años hace | 0

| aceptada

Respondida
Create a loop that performs calculation on 100 rows and moves to the next 100 rows in a matrix.
n = 100; m = 11700/n; dc = zeros(m,1); for count = 1:m M = q((count-1)*n+1:count*n,:); summe = 0.0; for i = 1:...

casi 4 años hace | 1

| aceptada

Respondida
LSQcurvefit does not yield same result for comparable data sets
Use x4 = [-2.1782 5.0283 2.1782 720.8491]; instead of x4 = [1 1 1 0]; as initial guess for the parameters.

casi 4 años hace | 1

| aceptada

Respondida
generating random no. between -pi to pi
See the example Random Numbers within Specified Intervals under https://de.mathworks.com/help/matlab/ref/rand.html

casi 4 años hace | 1

Respondida
How can I solve 4 simultaneous equations ?
You might want to test fsolve and lsqnonlin with different initial guesses for the parameters, but I doubt you will find a sol...

casi 4 años hace | 0

| aceptada

Respondida
BVP4C for solving an 3rd order ODE
tmesh = linspace(0,10,100); solinit = bvpinit(tmesh, [0 1 0]); sol = bvp4c(@odefun, @bcfcn, solinit); plot(sol.x, sol.y) f...

casi 4 años hace | 1

| aceptada

Respondida
Find the polar representation of (𝑖 − √3 )
https://de.mathworks.com/help/matlab/ref/cart2pol.html

casi 4 años hace | 0

Respondida
Help with time dependent ODE with a piece-wise component that needs to mirror a convolution integral
tspan1 = 0:0.01:0.2; odefcn1 = @(t,y) [y(2); -(1500.*y(1) - 1500.*(2.5.*t))./5]; y0_1 = 0; ydot0_1 = 0; ics1 = [y0_1 ydot0_1...

casi 4 años hace | 0

Respondida
I need help to execute a triple integral
You still didn't get the point. Look at the documentation of integral3: q = integral3(fun,xmin,xmax,ymin,ymax,zmin,zmax) appro...

casi 4 años hace | 1

| aceptada

Respondida
How to solve differential equation including derivative of eigenvalue of tensor?
A third variante of the code also seems to work under MATLAB ( for high values of the integration tolerances :-) ) syms s A = ...

casi 4 años hace | 1

| aceptada

Respondida
The (x,y) coordinates of a certain object as a function of time t are given by x(t) = 5t - 10; and y(t) = 25t2 – 120 t + 144, for 0 ≤ t ≤ 4. 1)
syms t x = 5*t-10; y = 25*t^2-120*t+144; distance_squared = x^2+y^2; d_distance_squared_dt = diff(distance_squared,t); time...

casi 4 años hace | 1

| aceptada

Respondida
plotting a graph in a range
R = 2.303 * 8.314; F = 96500; ratio = @(T,eqv,z) exp(eqv*(z*F)./(R*T)); T = 283:313; plot(T, ratio(T,-0.06,1))

casi 4 años hace | 0

| aceptada

Respondida
Array indices must be positive integers or logical values.
Everywhere where you want to multiply two quantities, you must set the multiplication sign. Something like r1 = k1(xch4*xh2o*P...

casi 4 años hace | 0

Respondida
How do I solve a triple integral with one integral limit in function of another variable
beta1= 1.72; mo1=5; rmin1=10; rmax1 = 20; mmax1 = 10; fun=@(r,m,s) r.*exp(-(s.^2/2 + beta1*(m-mo1)))./sqrt(r.^2-rmin1); z...

casi 4 años hace | 1

Respondida
2D Temperature distribution from 1D temperature distribution T(x)
x_position = [0.05; 0.0625; 0.075; 0.0875; 0.10; 0.1125; 0.125; 0.1375; 0.15; 0.1625; 0.175; 0.1875; 0.2; 0.2125; 0.225; 0.2375...

casi 4 años hace | 0

| aceptada

Respondida
How to solve differential equation including derivative of eigenvalue of tensor?
Here is a numerical code to solve your problem. It's risky to use this approach since - as Walter Roberson noted - the ordering...

casi 4 años hace | 1

Respondida
y(k + 2) = 0.25y(k), y(0) = 0, y(1) =1 (b). Write a Matlab script that solves y(k) pointwise for k =0,1,2,…,10. Ruun the program and verify that the solution is in accordance
Initialize y(1) = 0, y(2) = 1 and use a for-loop to calculate y(k+2) starting with k = 1 and ending with k = 9.

casi 4 años hace | 0

Respondida
How to solve coupled second order ODE?
b = 0.1; fun = @(t,y)[y(2);-b*y(2)*sqrt(y(2)^2+y(4)^2);y(4);-b*y(4)*sqrt(y(2)^2+y(4)^2)]; y0 = [0;44.5;80;0]; tspan = [0,10];...

casi 4 años hace | 0

Respondida
Getting the summation of a series
h=[ 1 3 5 7 9 11 13 15] ; ah = [35.8577 -6.2962 -1.2855 3.9251 -3.8197 2.2690 -0.4077 -0.9397 ]; alpha = lins...

casi 4 años hace | 1

| aceptada

Respondida
Using fminsearch() for MSD system
p0 = [50 400]; p = fminsearch(@fun,p0) function objective = fun(p) k2 = p(1); c2 = p(2); %tspan = [0,0.3]; %observing sys...

casi 4 años hace | 0

| aceptada

Respondida
Create a unit vector from two locations?
is this correct? No. MTH2 = [0.472 1.364 0.06] CoM = [0.471 1.147 0.903] UnitVector = (CoM - MTH2) / norm(CoM - MTH2)

casi 4 años hace | 0

Respondida
how to use derivative of function using gradient?
Forget about y(13) and use dydz(2) = y(3); %Specific mass balance (CH4) dydz(3) = ((y(1)*y(3))+(dens_cat_weighted*r_CH4))/(D_m...

casi 4 años hace | 1

Respondida
How to solve differential equation including derivative of eigenvalue of tensor?
See if it works. I cannot test it. syms s A = sym('A',[3 3]); % Define characteristic polynomial determinant = det(A-s*eye(3...

casi 4 años hace | 1

Respondida
Minimalization problem LinearConstraint and conjugate gradient optimizer
According to the Python code, F is maximized, not minimized. Change in the below code if appropriate. M = [0.170543 0.327434 0....

casi 4 años hace | 0

| aceptada

Respondida
Performing Chi Square Test
Source: https://de.mathworks.com/matlabcentral/answers/96572-how-can-i-perform-a-chi-square-test-to-determine-how-statistically...

casi 4 años hace | 1

| aceptada

Respondida
Substitute symbolic matrices into numerical matrices
Do you know Cramer's rule ? A = sym('A',[3 3]); b = sym('b',[3 1]); x = sym('x',[3 1]); sol = solve(A*x==b,x) And now pleas...

casi 4 años hace | 0

Respondida
System of Nonlinear Equations are failing to be solved
In my opinion, it should be eq1 = C_arg + P_arg == pi-phi_m*pi/180; instead of eq1 = C_arg + P_arg == pi-phi_m*180/pi; (see ...

casi 4 años hace | 1

| aceptada

Cargar más