photo

gerardo garza


University of texs-pan american

Active since 2013

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

5 Questions
0 Answers

RANK
69,323
of 301,487

REPUTATION
0

CONTRIBUTIONS
5 Questions
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
 of 21,303

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 174,775

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

Feeds

View by

Question


i was given these equations to solve with mass matrix ( dy(1)=y(2), dy(2)=0, dy(3)=y(4), dy(4)=-g), initial conditions y(1)=0, y(2)=v(cosa), y(3)=0, y(4)=v(sina) but i dont know how to use it can someone help me get started
i dont know what is the format that i have to use to solve differential equations with mass matrix please help me

13 years ago | 0 answers | 0

0

answers

Question


i was given these equations to solve with ode15s ( dy(1)=y(2), dy(2)=0, dy(3)=y(4), dy(4)=-g), initial conditions y(1)=0, y(2)=v(cosa), y(3)=0, y(4)=v(sina) but it keeps telling me i dont have enough input arguments
function dy = func(t,y) dy=zeros(4,1) g=9.81 v=10 a=45 dy(1)=y(2) dy(2)=0 dy(3)=y(4) dy(4)=-g [t,y]=ode15s(@func, [0 2...

13 years ago | 0 answers | 0

0

answers

Question


i was given these equations to solve with ode15s ( dy(1)=y(2), dy(2)=0, dy(3)=y(4), dy(4)=-g), initial conditions y(1)=0, y(2)=v(cosa), y(3)=0, y(4)=v(sina) but it keeps telling me i dont have enough input arguments
function dy = func(t,y,g,v,a) dy=zeros(4,1) g=9.81 v=10 a=45 dy(1)=y(2) dy(2)=0 dy(3)=y(4) dy(4)=-g [t,y]=ode15s(@fu...

13 years ago | 1 answer | 0

1

answer