photo

Dharma


自 2018 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB Answers

6 个提问
0 个回答

排名
162,080
of 300,988

声誉
0

贡献数
6 个提问
0 个回答

回答接受率
16.67%

收到投票数
0

排名
 of 21,130

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 172,218

贡献数
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 years 前 | 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); ...

8 years 前 | 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; ...

8 years 前 | 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(...

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

1

个回答