photo

Dharma


2018 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

6 質問
0 回答

ランク
209,463
of 300,753

評判
0

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

回答採用率
16.67%

獲得投票数
0

ランク
 of 21,075

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 170,858

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

スコア
0

バッジ数
0

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

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

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


Displaying two different variable legends in the same figure
I am trying to display two legends in the same figure.Here, z1,z2 and z3 all are variables.Please suggest. Suppose z1=0.4, ...

7年以上 前 | 2 件の回答 | 0

2

回答

質問


I want to find particular values of t at which y becomes 2 (by writing some commands in code itself). Can I extract such values of t as a vector?
clear clc; N=2000; % Number of time stpes dt=0.05; %Time step %Initialize y=zeros(N,1); t=zeros(N,1); ...

7年以上 前 | 2 件の回答 | 0

2

回答

質問


Applying higher value of input parameter for some interval input variable in ODE.
N=10; k=zeros(N,1); r=zeros(N,1); t=zeros(N,1); k1=1;k(1)=1;t(1)=0;dt=0.05; for i=2:N t(i)=t(i-1)+dt; ...

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

0

回答

質問


How to find out particular value of t (j) at which y(j) is equal to some value lets say 4 (without looking graph) ? Thanks.
N=100; dt=0.05; k=2; t=zeros(N,1); y=zeros(N,1); y(1)=2;t(1)=0; for j=1:N-1 t(j+1)=t(j)+dt; y(...

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

1

回答

質問


Problem with iterating loop again if output is less than some fixed value
Hi, I am trying to calculate theta1, theta2 and r using following equations. N=100; for j=2:N ...

8年弱 前 | 1 件の回答 | 0

1

回答