I need MATLAB done for these two problems. I have solved both by hand. Problem one needs a nice looking velocity vs distance graph. Problem 2 needs distance vs time and acceleration vs time graphs. I...

1 answer below »
I need MATLAB done for these two problems. I have solved both by hand. Problem one needs a nice looking velocity vs distance graph. Problem 2 needs distance vs time and acceleration vs time graphs. I wrote a code for each that worked but can't figure out the graphing. Attached are both problems solved and the questions originally posed. Both problems require integration and deriving coding(for problem 2). Again, problems are already solved by hand, just need MATLAB code for graphs
Answered Same DaySep 07, 2021

Answer To: I need MATLAB done for these two problems. I have solved both by hand. Problem one needs a nice...

Intakhab answered on Sep 07 2021
147 Votes
Q1.
clc
clear all
s=linspace(0,1000,100)
v1=(2*6*s).^0.5

v1000=(12*1000).^0.5;
x=(0-(v1000)
.^2)/(2*-4);
s1=1000+x
s2=linspace(1000,s1,100)
v2=(20000-8*s2).^0.5
sdash=[s,s2];
v=[v1,v2];
plot(sdash,v)
Q2.
clc
clear all

t=linspace(0,25,100)
s=0.0012*(t.^4)
plot...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here