Answered
Reveresing the order of columns in an array
A = [1 2; 3 4; 5 6; 7 8; 9 10; 11 12]; perm = [1 6 5 4 3 2]; A = A(perm,:)

4 years ago | 0

Answered
How to code a certain part of this equation?
for i = 1:m-1 xmhalf = x(i); xphalf = x(i+1); B_agg(i) = 0.0; for k=1:m for j=k:m if v...

4 years ago | 0

| accepted

Answered
Swaping two columns randomly picked
A = rand(25,5); i = randsample(5,2); v = A(:,i(1)); A(:,i(1)) = A(:,i(2)); A(:,i(2)) = v; or simply A = rand(25,5); i =...

4 years ago | 0

| accepted

Answered
Imposing Constraint in FMINCON optimization problem.
Aeq = [zeros(1,N_plies),ones(1,N_plies)]; beq = 1.0;

4 years ago | 2

Answered
How to fit power law distribution on data set?
plfit is not an official matlab code. You can download it here: https://github.com/jblocher/matlab-network-utilities/blob/mast...

4 years ago | 1

| accepted

Answered
Raising a scalar to each element in a matrix
expm is incorrect, use exp. And you shouldn't divide by 0 - not for X and not for Y. x = linspace(1,50); y = linspace(1,50); ...

4 years ago | 0

Answered
Sinus plus straight lines plot
f = @(x) 2*sin((x+2)*pi/2).*(x>=-2).*(x<-1) + (-2*x).*(x>=-1).*(x<=0); x=-2:0.001:0; plot(x,f(x)) Can you add the next two cy...

4 years ago | 0

| accepted

Answered
Setting Initial Conditions for Genetic Algorithm
Here is a list of options (also for initial conditions) you can set for ga: https://de.mathworks.com/help/gads/ga.html#mw_4a8bf...

4 years ago | 0

Answered
possitive solution for set of three nonlinear eqations where t_1 t_2 and pi_2 are varaibles
Solve the first equation for t_i2. Solve the second equation for P_i2 and insert the expression for t_i2 from the first equatio...

4 years ago | 0

Answered
how to create an arc path from 3 points(x, y, z) in plane?
Determine the center of the circle: https://math.stackexchange.com/questions/1076177/3d-coordinates-of-circle-center-given-thre...

4 years ago | 0

| accepted

Answered
Ho to perform Monte Carlo Simulation with a factor and a vector.
data_TSS=readtable('turb_danuube_15min.csv'); % data TSS & time TSS=data_TSS(1:1:353665,2); time=data_TSS(1:1:353665,1); %% T...

4 years ago | 0

| accepted

Answered
A simple error minimization (optimization) problem
A = [C1,C2,C3]; b = L1+L2+L3; C = A\b; C1 = C(1) C2 = C(2) C3 = C(3)

4 years ago | 0

| accepted

Answered
while loop to count partail sum of series
sum_{i=1}^{i=N} 1/(i*(i+1)) = 1 - 1/(N+1) No need for such a difficult while construction with precision estimate.

4 years ago | 0

Answered
How to get energy using power summation equation in MATLAB?
t = [0 t]; E = sum(P.*diff(t))

4 years ago | 0

| accepted

Answered
Solve system of differential equations
x01=-5;y01=-7; x0=[x01,y01]'; beta=25; syms x1 y1 t x11=[x1,y1]'; c1=(1/2)*(x1-i*sin(t))^2+(3/2)*(y1-i*cos(t))^2; row=100*...

4 years ago | 0

| accepted

Answered
Loop to check if 2 conditions are true for values 1:n, (1:n)+1, (1:n)+2, etc. in a vector and save ID
for i=1:365-7+1 period = rainfall(i:i+6); sum_period = sum(period); n = numel(find(period>0)); if sum_period...

4 years ago | 0

| accepted

Answered
Use ode45 when I have a constant that varies over time.
n=10; xmin_in = 15; % Minimum inlet temperature xmax_in = 16; % Maximum inlet temperature T_in = xmin_in+ra...

4 years ago | 0

| accepted

Answered
Determine y for a function with a symbolic variable x
syms x F(x) = x.^2; F(0)

4 years ago | 0

Answered
Rotate the coordinate system to align an existing plane with Y'Z' plane
https://stackoverflow.com/questions/9423621/3d-rotations-of-a-plane But are you sure that the parabola in the YZ plane is not a...

4 years ago | 0

Answered
How to solve a system of differential equations using ode45 and vary the magnetic field and plot the solutions as a function of this field?
b=[0:0.1:10]; d0=0.2 wb=1 wd=wb-d0 wl=wb db=0.18 dd=0.05 a=0.02 Ua=0.15 Ub=0.02 g1= 0.001 g2=g1 g3= 0.0001 g4=g3 %...

4 years ago | 0

Answered
Problems with declaring the variable right
xg= 7*2*5*1*6*3; xh= 3/10; F1=3; F2=100; T= 1/500; fun = @(k1,i) xg*sin(2*pi*F1*(k1-i)*T); fun(14,0:14)

4 years ago | 0

Answered
Spectral factorization of polynomial x(s)
Let a(s)*a(-s)+b(s)*b(-s) = p0 + p1*s + ... + p2n*s^(2*n) Determine the roots of a(s)*a(-s) + b(s)*b(-s) The 2*n roots ap...

4 years ago | 0

| accepted

Answered
Correctly evaluate exponential function for limit values
function result = f(x,g,h,N) result = N^2*ones(size(x)); K = g(x).*h(x) ~= 0; if (any (K(:))) result(K) = your exp...

4 years ago | 0

Answered
"Not enough input arguments, Error in my_ode_without_tld_1 (line 24) F = interp1(tdata,ydata)" why this error is showing?
If F has the same number of elements as i, the following should work: i = 0.1:0.1:30; y0 = [0 0]; F = load('shear force.dat')...

4 years ago | 1

Answered
How to find coefficient matrix?
I assume the last xi^n should be xi^m in sum_{i=1}^{n} y_i*x_i^n x = [1 3 5 7 9]; y = [3 -1 3 78 -0.2]; m = 4; xx = x.^(...

4 years ago | 0

| accepted

Answered
How to use Monte Carlo simulation to calculate the area of polygon?
Randomly create points inside the bounding box. Decide which of the points are inside (P_i) and which of the points are outside...

4 years ago | 0

Answered
FMINCON requires the following inputs to be of data type double
Although I don't understand your problem setup because the variables in the objective function are not influenced by your constr...

4 years ago | 0

| accepted

Answered
Error using plot3 not enough input arguments
plot3(i_1, j_1, k_1) plot3(i_2, j_2, k_2) plot3(i_3, j_3, k_3) plot3(i_4, j_4, k_4) instead of plot3(i_1, j_1, k_1, tspan) ...

4 years ago | 0

| accepted

Answered
Problem with PDE resolution
function [c,f,s]=heatpde(x,t,u,dudx) c = [1 ;1]; f = [0.1*dudx(1);0.5*dudx(2)]; a = 0.2*u(1)*u(2)/(1+0.1*u(1)+0.02*u(2)+0.03*...

4 years ago | 1

Answered
Spatio-temporal plug flow reactor simulation with method of lines
function PFR_t_L_sim_v2_1 % function method_of_lines clear all; clc; close all function dCdt = reaction(t,C) C1 ...

4 years ago | 1

| accepted

Load more