Answered
secant method exceeds the number of array
x(i+2)=x(i)-(fun(x(i))*((x(i+1)-x(i))/(fun(x(i+1))-fun(x(i))))); For i = 1, the evaluation of the right-hand side needs x(1) an...

4 years ago | 0

| accepted

Answered
How to create a Fourier series using for loops
k = 1:14; x = (-2:0.01:2).'; f = 0.5 + sum(2./(k.^2*pi^2).*((-1).^k-1).*cos(pi*k.*x/2) + 2./(k*pi).*(-1).^(k+1).*sin(pi*k.*x/2...

4 years ago | 0

| accepted

Answered
Problem solving exponential equation
Your parantheses are unbalanced. After correcting it, the below code should work. syms t eqn = 1000/(exp(log(4) - t/40) + 1 ==...

4 years ago | 0

Answered
How to quickly identify a list of nearby stations?
https://de.mathworks.com/help/stats/pdist.html And for your double loop, you should replace for i=1:m2 for j=1:m2 by fo...

4 years ago | 0

| accepted

Answered
need a for loop that displays value at each point of x.
But I already gave you the formulae how to code "cumtrapz": 0 = ctrapz(1) [f(x0)+f(x1)]/2 * (x1-x0) = ctrapz(2) [f(x0)+f(x1)]...

4 years ago | 0

| accepted

Answered
Putting togethor constraints for fmincon
The conditions defined under "ineqconstraint" have to be put into the matrix A and the vector b of "fmincon".

4 years ago | 0

Answered
'corrcoef' doesn't return a matrix as it should, but I always get 1?
for i=1:numel(time) coefR{i} = corrcoef((res2(i,:)).',(res3(i,:)).'); end

4 years ago | 0

| accepted

Answered
plotting functions from book
c = 1; k = 1.2:0.4:2.8; u = (linspace(0,2.4,100)).'; f = (k/c).*(u/c).^(k-1).*exp(-(u/c).^(k)); plot(u,f)

4 years ago | 0

| accepted

Answered
How to fill just such successive elements in row of matrix?
A = [ 0 50 0 0 0 0 0 50 0 0 0 0 50 0 0 0 0 0 50 0]; S = linspace(1,4...

4 years ago | 0

| accepted

Answered
Solving Double integral equations
u_0 = 1.25663706*1e-6; % permeability of free space L = 12.4; % Axial distance between rotor back plates p =8; % Number of p...

4 years ago | 0

| accepted

Answered
2nd 3rd derivatives
x = [-2:0.01:1]; y = exp(-3.*x); dydx = diff(y)./diff(x); d2ydx2 = diff(dydx)./diff((x(1:end-1)+x(2:end))/2); d3ydx3 = diff(...

4 years ago | 0

Answered
how can i sum the 'y' above in the picture i have polt ?
x = -2:0.001:2; y = 1.8*exp(-x.^2); plot(x,y) sum(y)

4 years ago | 0

Answered
How do I find the eigenvalues and vectors of an equation not of form (A*x = b*x)?
Multiply be inv(M) and use eig as lambda = eig(inv(M)*K)

4 years ago | 0

Answered
Help with Graphing Difference Equations
syms x n a b f = x^2-5*x+6; xsol = solve(f==0); y = a*xsol(1)^n + b*xsol(2)^n csol = solve([subs(y,n,0)==2,subs(y,n,1)==5],[...

4 years ago | 0

Answered
How to calculate the number of values in a Gaussian distribution greater than one standard deviation?
I want to calculate the number of values greater than one standard deviation. Maybe you mean one standard deviation apart from ...

4 years ago | 0

Answered
what the difference between the phase and arctan?
phase(z) = atan2(imag(z),real(z)) Read the documentation for atan2 to find the differences to the usual atan function: https:/...

4 years ago | 0

| accepted

Answered
Running for loop on an equation
S = [1/2, 1/3, 1/2, 1/3, 1/3, 1/2; 1/2, 0, 0, 0, 0, 0; 0, 1/3, 1/2, 0, 0, 0; 0, 0, 0, 0, 1/3, 0; 0, 1/3, 0, ...

4 years ago | 1

| accepted

Answered
Why am I not getting the m array?
yinter is not a function. So use "plot" instead of "fplot" (whatever abscissa data you might want to choose). Not that yinter(3...

4 years ago | 0

Answered
undefined function 'piecewise' for input arguments of type 'double'.
syms x y = piecewise(x <= 1, ((-2.*(x.^2))+9.*x-7), x > 1, ((10.*sqrt(x))+3)); fplot (x,y,[-5 5])

4 years ago | 1

| accepted

Answered
Graphing partial sums of harmonic fourier series
x = (linspace(-2,4,200)).'; n = 1:5; f = 1 - exp(-1) + 2*sum((1-(-1).^n*exp(-1))./(1+n.^2*pi^2).*cos(n.*pi.*x),2); plot(x,f) ...

4 years ago | 0

Answered
Help using fmincon to find the 2 support locations (x1,x2) that minimize maximum bending moment
Don't know if the bending moment is correctly implemented. From how I naively interpreted the problem, x1 and x2 should lie symm...

4 years ago | 0

Answered
Resultant vector from three different location and normal vector of a plane
v1 = [0.000326 -0.00018 -0.00017 ]; v2 = [0.000365 -0.00016 -0.00017 ]; v3 = [-0.00015 -0.00018 -0.00039 ]; % compute r...

4 years ago | 2

| accepted

Answered
Finding the function of the supremum
sup-norm is a theoretical concept. There is no such function in MATLAB to calculate it for a general function. In the case abo...

4 years ago | 1

| accepted

Answered
How to generate an exponential random variable parameter 1?
https://de.mathworks.com/help/stats/exprnd.html

4 years ago | 0

Answered
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') ...

4 years ago | 0

Answered
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

4 years ago | 0

Answered
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...

4 years ago | 0

| accepted

Answered
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:...

4 years ago | 1

| accepted

Answered
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.

4 years ago | 1

| accepted

Answered
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

4 years ago | 1

Load more