Andrew Davies - MATLAB Central
photo

Andrew Davies


University of Cape Town

自 2014 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB AnswersFrom 05/14 to 04/25Use left and right arrows to move selectionFrom 05/14Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

5 个提问
0 个回答

排名
34,516
of 298,264

声誉
1

贡献数
5 个提问
0 个回答

回答接受率
20.0%

收到投票数
1

排名
 of 20,554

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,718

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


Getting the wrong plot?
function dLdt = Lorentz(t,xyz,s,b,r) xyz = [3;2;3]; s = 10; b = 8/3; r = 0.5; dx = s*(xyz(2) - xyz(1)); dy = r...

11 years 前 | 0 个回答 | 0

0

个回答

提问


Need to return a column vector?
function dLdt = Lorentz(t,xyz) x=xyz(1); y=xyz(2); z=xyz(3); s = 10; b = 8/3; r = 0.5; dx = s*(y - x) ...

11 years 前 | 1 个回答 | 0

1

个回答

提问


My input method isn't working?
Something is going wrong. Here is the code i'm trying to get to work %function dLdt = Lorentz(t,x,y,z) %s = 10 %b = 8/3 ...

11 years 前 | 2 个回答 | 0

2

个回答

提问


What's wrong with my code?
function dxdt = pendulum(t,x) L = 1; theta = x(1); gamma = x(2); dtheta = gamma; dgamma = -(9.8/L)*sin(theta)...

11 years 前 | 1 个回答 | 0

1

个回答

提问


How do I plot a particular solution (with given initial conditions) of 3 differential equations with 3 variables?
The equations are the Lorentz equations: x(dot) = sigma(y-x) y(dot) = rx - y - xz z(dot) = xy - bz where sigma, r an...

11 years 前 | 1 个回答 | 1

1

个回答