Community Profile

photo

Mariam Gasra


2019년부터 활동

Followers: 0   Following: 0

통계

  • Thankful Level 2
  • First Review
  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


reorganize plot for runge kutta
% It calculates ODE using Runge-Kutta 4th order method % Author Ido Schwartz clc; ...

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


solve runge kutta method
lamda=0.2; mu=0.8; h=0.1; % step size x = 0:h:5; ...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


solve runge kutta for eqution of one variable
lamda=0.2; mu=0.8; h=0.5; % step size x = 0:h:100; ...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


runge kutta method 4th order
clc; % Clears the screen clear all; lamda=0.2; mu=0.8; h=0.1; ...

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


add three function in runge kutta
h=0.5; % step size x = 0:h:100; % Calculate...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


Merge three initial values ​​into one code by runge-kutta
h=0.5; % step size x = 0:h:100; % Calculate...

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


Runge-Kutta 4th order method
% It calculates ODE using Runge-Kutta 4th order method % Author Ido Schwartz clc; ...

거의 5년 전 | 답변 수: 8 | 8

8

답변

질문


how to solve this matrix by adams bashforth matlab
lamda1=0.2; mu1=1-lamda1; lamda2=0.3; mu2=1-lamda2; A=[-(lamda1+lamda2) mu2 mu1 0;lamda2 -(mu2+lamda1) 0 mu1;lamda1 0 -(...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


solve by runge kutta method
lamda1=0.2; mu1=1-lamda1; lamda2=0.3; mu2=1-lamda2; A=[-(lamda1+lamda2) mu2 mu1 0;lamda2 -(mu2+lamda1) 0 mu1;lamda1 0 -(...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


how can i plot this matrix
lamda1=0.2; mu1=1-lamda1; lamda2=0.3; mu2=1-lamda2; A=[-(lamda1+lamda2) mu2 mu1 0;lamda2 -(mu2+lamda1) 0 mu1;lamda1 0 -(...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


error to get the answer by Kronecker
function K = kronecker(A,B) if ~issparse(A) && ~issparse(B) if ~ismatrix(A) || ~ismatrix(B) error('kronec...

거의 5년 전 | 답변 수: 0 | 0

0

답변

질문


Vectors must be the same length.
lamda=0.2; mu=1-lamda; P1=mu^2/(mu+lamda)^2; P2=2*lamda*mu/(mu+lamda)^2; P3=lamda^2/(mu+lamda)^2; display(P1); display(P2)...

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


Adams bashforth matrix mathworks
lamda1=0.2; mu1=1-lamda1; lamda2=0.3; mu2=1-lamda2; lamda3=0.5; mu3=1-lamda3; A1=lamda1+lamda2+lamda3; A2=lamda1+lamda2+m...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


code for Adams Bashforth
lamda1=0.2; mu1=1-lamda1; lamda2=0.3; mu2=1-lamda2; lamda3=0.5; mu3=1-lamda3; A1=lamda1+lamda2+lamda3; A2=lamda1+lamda2+m...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


code for plot figure
lamda=0.2; mu=1-lamda; P1=mu^2/(mu+lamda)^2; P2=2*lamda*mu/(mu+lamda)^2; P3=lamda^2/(mu+lamda)^2; display(P1); displ...

대략 5년 전 | 답변 수: 1 | 0

1

답변

질문


Solve this by matlab
Solve by matlab

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


error to get a result
clear clc %Defining Variables unit=input('input the number of unit:'); D=input('input total load :'); dP=D; n=input('insert...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


comparing element in array
clc; clear all close all %%% unit=input('input the number of unit:'); D=input('input total load :'); dP=D; Bdat1=input('t...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


comparing element of matrix
clc; unit=input('input the number of unit:'); D=input('input total load :'); dP=D; Bdat1=input('transmission losses considere...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


matlab error operands to the || and &amp &amp operators must be convertible to logical scalar values
clc; clear all close all %%% unit=input('input the number of unit:'); D=input('input total load :'); dP=D; Bdat1=input('t...

대략 5년 전 | 답변 수: 2 | 0

2

답변

질문


If statement didnt work correctly
If i run the program if p less than min the result must be equal to zero but in this programme the result equal to min can any o...

대략 5년 전 | 답변 수: 0 | 0

0

답변