Mariam Gasra
Followers: 0 Following: 0
Statistics
21 Questions
0 Answers
RANK
6,094
of 295,940
REPUTATION
8
CONTRIBUTIONS
21 Questions
0 Answers
ANSWER ACCEPTANCE
14.29%
VOTES RECEIVED
8
RANK
of 20,307
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,945
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
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
answerQuestion
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
answersQuestion
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
answersQuestion
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
answerQuestion
add three function in runge kutta
h=0.5; % step size x = 0:h:100; % Calculate...
5 years ago | 0 answers | 0
0
answersQuestion
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
answerQuestion
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
answersQuestion
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
answersQuestion
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
answersQuestion
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
answersQuestion
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
answersQuestion
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
answerQuestion
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
answersQuestion
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
answersQuestion
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
answerQuestion
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
answersQuestion
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
answersQuestion
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
answersQuestion
matlab error operands to the || and & & 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
answersQuestion
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