photo

Bob


自 2015 起处于活动状态

Followers: 0   Following: 0

统计学

  • Thankful Level 3

查看徽章

Feeds

排序方式:

提问


Using ode45 for solution curve
Equations: df/dt= 4f(t) - 3f(t)p(t) dp/dt= -2p(t) + f(t)p(t) Question: For the solution curve that starts at (1,1), ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Using ode45 to plot
Equations: df/dt= 4f(t) - 3f(t)p(t) dp/dt= -2p(t) + f(t)p(t) Question: Useode45to plot some representative examples of...

8 years 前 | 1 个回答 | 1

1

个回答

提问


Using the Solve command
Equations: df/dt= 4f(t) - 3f(t)p(t) dp/dt= -2p(t) + f(t)p(t) Question: Figure out the critical points of the system...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Using ode45 and differential equations
A paratrooper steps out of an airplane at a height of 1000 feet and, after five seconds, opens her parachute. Her weight, incl...

8 years 前 | 0 个回答 | 0

0

个回答

提问


Plotting Answers to dsolve
Trying to get the answers to show up on plot Code: for w = 1.3, 1.5, 1.8, 1.9 dsolve('2*D2h + 8*h = 5*cos(w*t)') ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


using ode 45 to estimate the derivative
Question: Use ode45 to estimate y'(3), where y is the solution to the initial value problem y" + (1/t)*y = 0 ; y(0) = 0, y'(0...

8 years 前 | 1 个回答 | 0

1

个回答

提问


plot numerical solutions to the the initial value problem
On a single graph, plot numerical solutions to the the initial value problem on the interval [0,10]. Use values of b that are l...

8 years 前 | 0 个回答 | 0

0

个回答

提问


ode45 Error not working
Use ode45 to overlay plots of solutions to this differential equation with y (0) = c for c ranging from 0 to 1 in steps of 0:1. ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Make a slope eld for this equation
Make a slope field for this equation over the intervals between 0<t<6 and 0<y<1. Equation: 5*y*(1-y)-(1+((sin(2*pi*t))/2)) A...

8 years 前 | 1 个回答 | 0

1

个回答

提问


almost-autnomous differential equation
y' = y^2 − t. This differential equation has “stationary” solutions, but unlike with an autonomous equation, those stationary s...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Make a direction field for the differential equation
Make a direction field for the differential equation: y' =( t + y + 1)/ (y − t ). In a comment, talk about where existence and ...

8 years 前 | 2 个回答 | 0

2

个回答

提问


Using dsolve function to solve this equation?
Question: Use dsolve to solve this equation: y' − y = 2 sin(t). Below is the code I used but I do not think I am getting...

8 years 前 | 1 个回答 | 0

1

个回答

提问


My Euler Method Error
Question: Consider the initial value problem: dy/dt= e−t − 3y, y(−1) = 0. Part a: Use the MATLAB program myeuler.m from C...

9 years 前 | 1 个回答 | 0

1

个回答

提问


Trouble getting plots to show in published PDF
I have all of my code done and now I am trying to publish the code in a pdf file and have it show the code, the answers, and the...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Finding the approximate length with for loop?
mylength(f,g,a,b,n) which takes five inputs: f: A function handle. g: A function handle. a: A real number. b: A real number...

9 years 前 | 1 个回答 | 0

1

个回答

已回答
While Loop code not working?
Can anyone help me?

9 years 前 | 0

提问


While Loop code not working?
Question: I have to create a function m file called myfirstzero(f,a) which takes two inputs: f: A function handle which you m...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Collinearity code not working?
Question: mylinecheck(a,b,c,d,e,f) which takes six inputs: [30 pts] a,b,c,d,e,f: Real numbers. You may assume that a,c,e are al...

9 years 前 | 1 个回答 | 0

1

个回答

提问


For loop code not working right?
Question: Set the variable p9 to equal 7. Then run a for loop which goes through the numbers n = 0, 3, 6, 9, ..., 300 and adds t...

9 years 前 | 2 个回答 | 0

2

个回答

提问


What is this question asking???
Question: Evaluate (g(x)/x+1)′′ (2). Note the 2 is plugged in here! I already have this code: diff(g(x)/(x+1),2) But I a...

9 years 前 | 1 个回答 | 0

1

个回答

提问


Half life question in matlab
Question: Metronidazole (used to treat infections) has a half life of H = 7.9 hours. Use solve to calculate [5 pt] the amount of...

9 years 前 | 0 个回答 | 0

0

个回答

提问


Is this code right?
question: Use fzero to approximate a root of sin(x) = cos(2x) near x = 1. code: fzero('sin(x)==cos(2*x)',1) answer: 1

9 years 前 | 0 个回答 | 0

0

个回答

提问


fzero function troubles/errors
question is Use fzero to find the largest x-value where ex+1 meets cos(5x). Use a nearby sensible integer value of your choice. ...

9 years 前 | 1 个回答 | 0

1

个回答

提问


Simplify error in matlab
I have this code: simplify(((sin*(x^2))*(sec*x))/(1+sec*x)) and getting this error: Error using sin Not enough input argume...

9 years 前 | 1 个回答 | 0

1

个回答

提问


Half life question in matlab
Metronidazole (used to treat infections) has a half life of H = 7.9 hours. Use solve to calculate [5 pt] the amount of time it ...

9 years 前 | 2 个回答 | 0

2

个回答

提问


Matlab Noob here Simple question
Can someone help me with writing the code for these two questions: Calculate e^0.4. Assign the answer to p2. Calculate log...

9 years 前 | 1 个回答 | 0

1

个回答