
SAHIL SAHOO
Statistics
27 질문
0 답변
순위
259,507
of 262,706
평판
0
참여
27 질문
0 답변
답변 채택
55.56%
획득한 표
0
순위
of 113,697
참여
0 문제
0 해답
점수
0
배지 수
0
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
질문
why the plot is not coming, is my plot function is wrong? please find the defect in the code.
ti = 0; tf = 1E-3; tspan=[ti tf]; y0=[1; 1; 0; 1; 1; 0; 1; 1; 0; 1; 1; 0; 1; 1; 0]*10E-2; yita_mn = [0 1 0 0 1; 1 0 1 0 0; 0...
약 18시간 전 | 답변 수: 1 | 0
1
답변질문
why I'm getting an error of index exceeds the number of element? how to fix it?
ti = 0; tf = 2.50E-9; tspan=[ti tf]; y0=[0; 0; 0]; yita_mn = 0.01; N = 5; [T,Y]= ode45(@(t,y) rate_eq(t,y,yita_mn,N),tspan...
3일 전 | 답변 수: 0 | 0
0
답변질문
using "for loop" to solve 5 different coupled differential equation.
syms A(t) O(t) a = 0.6; n = 0.05; tc = 10E-9; r = 1.5; F = 1; N = 5; for i = 1:N ode1 = diff(A(i)) == (-1/(2*tc)).*(1 ...
10일 전 | 답변 수: 0 | 0
0
답변질문
can I apply a for loop inside the function so that I can make my program short?
ti = 0; tf = 10E-6; tspan = [ti tf]; a = 0.6; n = 0.05; tc = 10E-9; r = 1.5; F = 10; f = @(t,y) [ ...
12일 전 | 답변 수: 1 | 0
1
답변질문
what's the problem in defining the function in for loop?
clc ti = 0; %inital time tf = 70E-9;% final time tspan=[ti tf]; tp =1E-12; T = 2E3; p = 0.05; k = (0.62).*10^(4); c = ...
12일 전 | 답변 수: 1 | 0
1
답변질문
there are two coupled differential equation, I try to solve that differential for the i = 1 to 5, but i think my for loop is incorrect.
these are the differential equation I want to solve where the i = 1 to 5 I want to solve these differential equation but mayb...
12일 전 | 답변 수: 1 | 0
1
답변질문
what the time span do in ode45?
[time,Y] = ode45(f,tspan./tp,[sqrt(0.05);sqrt(0.05);0;0;0.1]); in this, is it means that we differentiaite the y by "t/tp" ?
20일 전 | 답변 수: 1 | 0
1
답변질문
I want to solve this couple differential where the dot represent the derivative with respect to t/tp, where tp = 30E-9, is my code for solving this is correct? ?
T = 2E3 i made this code clc ti = 0; %inital time tf = 70E-9;% final time tspan=[ti tf]; T = 2000; p = 0.05; n = 1E...
21일 전 | 답변 수: 1 | 0
1
답변질문
why this function is not plotting?
a =5; T = 2E3; Z = linspace(0,0.1,0.01); U = (1+2.*Z)./(2.*a.*T); plot(Z,U)
21일 전 | 답변 수: 1 | 0
1
답변질문
the program is plotted once, then showing error, is something error in program
format long a = 0; b = 4; h = 0.1; k = 0.033; L = 0.5; s = 0.1; tc = 70E-9; n = (b-a)/h ; t = a + (0:n)*h; ...
22일 전 | 답변 수: 1 | 0
1
답변질문
solving the equation using rk-4 method, but couldn't get the right output, last time I forget to add the program please check this one.
i want to solve this, where σ = 0.1, L0 = 0.5, k= 0.01, tc = 70E-9 format long a = 0; b = 4; h = 0.1; k = 0.01; % critic...
22일 전 | 답변 수: 0 | 0
0
답변질문
solving a differential equation using ode45 but the problem is i didn't get what i expected.
i want to solve this, where σ = 0.1, L0 = 0.5, k= 0.01, tc = 70E-9 and U(Φ0) is so that the phase difference Φ0 vs t gr...
22일 전 | 답변 수: 1 | 0
1
답변질문
is the "for loop" is wrong? what can be the solution?
clc ti = 0; tf = 100E-4; tspan=[ti tf]; o = 1E6; tc = 70E-9; tf = 240E-6; a1 = 0.02; a2 = 0.02; P1 = 1; P2 = 1; ...
23일 전 | 답변 수: 2 | 0
2
답변질문
there is no output, it's keep running but no output, why so?
clc %defining constant ti = 0; %inital time tf = 100E-4;% final time tspan=[ti tf]; o = 1E6; % detuning frequency tc = 70...
23일 전 | 답변 수: 1 | 0
1
답변질문
how to use for loop to get a value of y at different time?
syms y(t) k = 0.01; % critical coupling strength L = 0.5; sigma = 0.1; tc = 70E-9; eqn = diff(y,t) == (- ((sigma^2)*k/t...
23일 전 | 답변 수: 1 | 0
1
답변질문
solving a single differential equation by using ode45, but it can't solve should I write something else.
clc ti = 0; %inital time tf = 10E-5;% final time tspan=[ti tf]; tc = 70E-9; %photon life time in cavity P = 1; %pump stre...
23일 전 | 답변 수: 1 | 0
1
답변질문
how to solve integral in the defining the function command?
clc %defining constant ti = 0; %inital time tf = 10E-5;% final time tspan=[ti tf]; o = 10E6; % detuning frequency tc = 70...
24일 전 | 답변 수: 1 | 0
1
답변질문
couldn't understand what's wrong in the function definition.
f = @(t,y) [ ((y(2)-a-l.*(abs(cos(y(3)+ pi/4)))).*y(1) + k.*y(1).*cos(y(3)- pi/2)).*(2/tc); ...
24일 전 | 답변 수: 2 | 0
2
답변질문
I couldn't understand what's wrong in this.
%Unable to perform assignment because the left and right sides have a different number of elements. clc %defining consta...
26일 전 | 답변 수: 2 | 0
2
답변질문
how can I use "for loop" in this to get a correct result?
clc %defining constant ti = 0; %inital time tf = 100E-4;% final time tspan=[ti tf]; o = 2E5; % detuning frequency tc = 30...
30일 전 | 답변 수: 1 | 0
1
답변질문
I couldn't understand why this program is not working, is my all variable algorithm is correct?
clc ti = 0; tf = 10E-4; tspan=[ti tf]; y0=[9;9;1;1;0].*10E-2; I =0:0.1 :10 ; Vf = zeros(length(I),1) ; for i = 1:l...
약 1달 전 | 답변 수: 1 | 0
1
답변질문
what the problem that I get to during plotting the graph
ti = 0; tf = 10E-4; tspan=[ti tf]; y0=[10;10;1;1;1].*10E-2; [T,Y]= ode45(@(t,y) rate_eq(t,y),tspan,y0); plot(T,Y(:,1)); xl...
약 1달 전 | 답변 수: 1 | 0
1
답변질문
I want to need (maxY(:,1)) for different value of k, how the for loop will help?
I need the "max(Y(:,1))" for the different value of k, in this code I put a single constant value of k and I need the max(Y(:,1)...
약 1달 전 | 답변 수: 2 | 0
2
답변질문
while solving a couple ordinary differential equation, I'm getting an error of Unable to perform assignment because the left and right sides have a different number of element
output:- Unable to perform assignment because the left and right sides have a different number of element. Error in laser2 (l...
약 1달 전 | 답변 수: 3 | 0
3
답변질문
while solving coupled differential equation getting this problem.
"Unable to perform assignment because the left and right sides have a different number of elements. Error in laser2 (line 54) ...
약 1달 전 | 답변 수: 0 | 0
0
답변질문
All I think is to get a sine wave function when plotting T vs A(1), but I didn't get any output. help me to modify this program
format long a = 0; b = 4; h = 0.1 V =1E-5 I1 = 0.2; I2 = 0.8; o = 3E5; tc = 30E-9; tf = 230E-6; a1 = 0.1; a2 =0.1; P...
약 1달 전 | 답변 수: 1 | 0
1
답변질문
I tried to solve 6 couple differential equation, and getting an error which is " Index exceeds the number of array elements. Index must not exceed 2."
%how to remove this error " Index exceeds the number of array elements. Index must not exceed 2." close all; clc; format l...
약 1달 전 | 답변 수: 1 | 0