Réponse apportée
how we write summation with loop
xl=0; xr=1; %domain[xl,xr] ...

plus de 3 ans il y a | 0

Réponse apportée
Draw vertical lines which have constant interval
P=[1:432] original_form = load('original_time.mat') time = datetime(original_form.t,'ConvertFrom','datenum') plot(time,P); ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Help with a bifurcation diagram plot
lambda = linspace(0,125,100) xt = linspace(-0.1,5,100)

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Index exceeds the number of array elements. Index must not exceed 20. Error in lumped_vortex_parabolic_camber (line 54) dx = xcollocation(i) - xvortex(k);
for i = 1 : 1 : Npanel % change In the first case you used this. But look at the 2nd for loop why you changed to 2*Npanel....

plus de 3 ans il y a | 0

Réponse apportée
Moving Decimal Places to the right
format long % format long option sprintf('%6f',1.412701202025964e+09)

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
fprintf with warning of a lone trailing backslash
folderName = strcat(rootFolder,filesep,timeSteps(m+2).name); fprintf(['\nProcessing folder %s', folderName]); You need ...

plus de 3 ans il y a | 1

Réponse apportée
I dont get why I am encountering an error message when running this code.
%v_t=20; %v_i=1; %g=10; %expo1=-2*g*t./v_t; %expo2=-2*g*t./v_i; %function I want to integrate and plot:v_t*(1-exp(expo1)+v_...

plus de 3 ans il y a | 0

Réponse apportée
code no good :(
clc,clear all %% Load Data - Initilize Variables DP980TD_S2 = xlsread('DP980TD-S2.xlsx'); % Data File % Constants widthO...

plus de 3 ans il y a | 0

Réponse apportée
How can I get the value by choosing 't' and 'x'? ,How should I set the graph range?
L = 30; n = 10; T0=500; T1s=300; T2s=400; dx=L/n; alpha=0.000085; t_final=4800; dt=300; % use a coarse timestep ...

plus de 3 ans il y a | 0

Réponse apportée
Using nested FOR() loops to populate a matrix
% MacLaurin Series of e^x format longG % define vector to hold series x values X = 0 : 0.01 : 1; % Create matrix to co...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
how to write a function for quadratic equation?
if (d>=0) & (~(a==0)) use binary operator &

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Why is my loop not working? "Index exceeds array bounds"
%%%%%% DEFINITIONS %%%%%%% clear Q_lpm=15; Q(1) =(Q_lpm/1000)/60; %m3/s [INPUT] diameter = 0.01; % m [INPUT] t =0.01; % tim...

plus de 3 ans il y a | 0

Réponse apportée
interpolate (extrapolate?) the values in between two matrices using existing data
A = [1, 2, 3, 4, 5; 0.3654, 0.3634, 0.3663, 0.3665, 0.3677]; B = [16, 17, 18, 19, 20; 0.4653, 0.4636, 0.4652, 0.4620, 0.4715];...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
I'm definitely doing the exponential distribution wrong, am I?
N = 1e4; a=0; b=1; x = (a+(b-a)*rand([N,1])); lambda = 11; % try with different lambda values Y = -log(x)/lambda; figure...

plus de 3 ans il y a | 0

Réponse apportée
speed up the for and if loop
for i = 1:10:300 % use step increments for j = 1:10:500 for k = 1:1000:17000 if(temp(i,:) > 2) ...

plus de 3 ans il y a | 0

Réponse apportée
ode45 keeps giving me the error shown below.
a = 0.459; lambda1 = 1.11*10^(-2); %units min^-1 lambda2 = 1.38*10^(-4); %units min^-1 Cp0 = 100; %units nM t = 0:7200; %uni...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
ODE with Newton method
clear all close all n=1001 y0=1; xmin=0; xmax=10; x=linspace(xmin,xmax,n); %grid step=(xmax-xmin)/n; %Step Size yy=zer...

plus de 3 ans il y a | 0

Réponse apportée
Function output an array
in = [rand(1,15);rand(1,15)]; differences(in) function [out] = differences(in) %This function allows an array input and th...

presque 4 ans il y a | 0

Réponse apportée
During simulation of mathematical model occuring following error
Use limit output option for selecting integrator saturation limits. May be in your case, its running indefinitely.

presque 4 ans il y a | 0

Réponse apportée
Using function with a for loop
(factorial(i)).^2) You have two extra parenthesis for this term

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Index location of certain dates with find and a loop
locs= zeros(length(TargetDates),length(t_list)); % change preallocated array size Change the preAllocated size of locs locs...

presque 4 ans il y a | 0

Réponse apportée
why my code is running so slowly in the while loop
clc; clear all; close all; r = 1250; O = [2500 2500] Px = 2500; Py = 1000; P = [ Px Py ]; Va = 100; To = 4; q22 = 0.1 ...

presque 4 ans il y a | 0

Réponse apportée
Summation of all odd numbers from 1 to 451
n = 451; a = 1; d = 2; S = 0; % Compute S by adding the terms for i = 1:n S(i) = (a+(i-1)*d/2); end sum(S(1:2:end)) ...

presque 4 ans il y a | 1

Réponse apportée
Implementation of Integral Cost function in Matlab
tspan = [0,1]; x0 = 1; u = 0.1; tau = 1; xn = 1; % noise [time, dxdt, J] = plant_dynamics(tspan,x0,u, tau, xn); subplot...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Problem with filling a variable inside loops
p = readtable ('pnts.txt'); p = table2array(p); x_p=p(:,2); y_p=p(:,3); z_p=p(:,4); t_p=p(:,5); xedges=-100:10:100;...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Numerical solution of PDE with uniform initial condition
clear all clc %% pts = 2^0.1; tmax = 1.76; ti = linspace(0,tmax,50); % give suitable sample size xi = linspace(0,1,50); ...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters. Can anyone help in this error?
M = 1:10; R = 200:300; Mean = mean(M); Range = mean(R) d = 2.326; n = 5; SE = Range./(d*sqrt(n)) % check the parenthesis ...

presque 4 ans il y a | 0

Réponse apportée
Iterations outcome summation (accumulation).
x = [4 7 9 11 6 8 13 5 0 2 1 23;14 3 8 0 2 9 7 2 12 17 4 5;0 1 3 4 0 0 7 8 2 5 4 1]; d = 0; iter = 1; for k = 1:size(x,1) fo...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Arrays have incompatible sizes for this operation.
LeqPrevious = zeros(1,30,2); % array preallocation is not the sme size of Leq LeqPrevious = Leq(i,:,:); % inside the loop Leq...

presque 4 ans il y a | 0

Réponse apportée
Solve System of ODEs with Multiple values of a parameter using vectorization but not looping.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%...

presque 4 ans il y a | 0

| A accepté

Charger plus