photo

Mariam Gasra


2019 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

21 質問
0 回答

ランク
5,447
of 300,759

評判
9

コントリビューション
21 質問
0 回答

回答採用率
14.29%

獲得投票数
9

ランク
 of 21,081

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 170,900

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
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; ...

6年以上 前 | 1 件の回答 | 0

1

回答

質問


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

6年以上 前 | 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; ...

6年以上 前 | 0 件の回答 | 0

0

回答

質問


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

6年以上 前 | 1 件の回答 | 0

1

回答

質問


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

6年以上 前 | 0 件の回答 | 0

0

回答

質問


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

6年以上 前 | 1 件の回答 | 0

1

回答

質問


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

6年以上 前 | 7 件の回答 | 9

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 -(...

6年以上 前 | 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 -(...

6年以上 前 | 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 -(...

6年以上 前 | 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...

6年以上 前 | 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)...

6年以上 前 | 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...

6年以上 前 | 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...

6年以上 前 | 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...

6年以上 前 | 1 件の回答 | 0

1

回答

質問


Solve this by matlab
Solve by matlab

6年以上 前 | 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...

6年以上 前 | 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...

6年以上 前 | 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...

6年以上 前 | 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...

6年以上 前 | 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...

6年以上 前 | 0 件の回答 | 0

0

回答