Community Profile

photo

Mariam Gasra


Active since 2019

Statistics

  • Thankful Level 2
  • First Review
  • Thankful Level 1

View badges

Content Feed

View by

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 0 answers | 0

0

answers

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 7 answers | 8

7

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 1 answer | 0

1

answer

Question


Solve this by matlab
Solve by matlab

5 years ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 2 answers | 0

2

answers

Question


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 ago | 0 answers | 0

0

answers