| Thread Closed |
[matlab] I just want to plot a function that describes position as a function of time |
Share Thread |
| Oct2-10, 07:36 PM | #1 |
|
|
[matlab] I just want to plot a function that describes position as a function of time
It's an object that's falling from rest. The equation takes into account linear friction. in any case, this is is my code or program of whatever it is called:
m=80;%Mass of ignorance g=9.8;%Gravity beta=1.6*10^-4;%Given coefficient for air at STP D=.4;%Diameter of Palin, assuming she's a spherical object b=beta*D;%Coefficient of linear friction t=0:.2:60; x=(m./b)*(g*t + e^(-b*t./m)); plot(t,x) grid on xlabel('time','FontSize',16) ylabel('Position of Sarah Below Helicopter','FontSize',16) I get this error: Error in ==> HW13myprogram at 10 x=(m./b)*(g*t + e^(-b*t./m)); What am I doing wrong? |
| Oct3-10, 12:24 PM | #2 |
|
|
replace your equation with
x=(m/b)*(g*t + e.^(-b*t/m)); |
| Oct3-10, 01:27 PM | #3 |
|
|
It worked fine for me with:
x=(m./b)*(g*t + exp(-b*t./m)); |
| Thread Closed |
Similar discussions for: [matlab] I just want to plot a function that describes position as a function of time
|
||||
| Thread | Forum | Replies | ||
| Position Function of Time | Introductory Physics Homework | 4 | ||
| Particle's position as a function of time - Integration | Introductory Physics Homework | 13 | ||
| Position as a function of time | General Physics | 3 | ||
| position as function of time | General Physics | 1 | ||
| a position time function! | Introductory Physics Homework | 5 | ||