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 years 前 | 1 个回答 | 0

1

个回答

提问


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

5 years 前 | 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 years 前 | 0 个回答 | 0

0

个回答

提问


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

5 years 前 | 1 个回答 | 0

1

个回答

提问


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

5 years 前 | 0 个回答 | 0

0

个回答

提问


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

5 years 前 | 1 个回答 | 0

1

个回答

提问


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

5 years 前 | 7 个回答 | 8

7

个回答

提问


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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 1 个回答 | 0

1

个回答

提问


Solve this by matlab
Solve by matlab

5 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 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 years 前 | 0 个回答 | 0

0

个回答