Statistics
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
Question
I was given these set of differential eqs. dy(1)=y(2), dy(2)=y(3), dy(3)=y(4), dy(4) =-w/(E*I), with boundary conditions: y1(0)=0, y3(0)=0, y1(L)=0, y3(L)=0. I have to use bvp4c to solve it but I can't do it here is my code. What am I doing wrong?
function dy=odefun(x,y) w=100; E=29000000; I=285; dy=[y(2); y(3); y(4); -w/(E*I)] function res=bcfun(y0,yL)...
13 years ago | 0 answers | 0
0
answersQuestion
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
answersQuestion
I have been asked to solve this set of differential equations using mass matrix but i dont know how it works, the eq. are dy(1)=y(2), dy(2)=0, dy(3)=y(4), dy(4)=-g, with initial conditions: y1(0)=0, y2(0)=v*cos(a), y3(0)=0, y4(0)=v*sin(a) help me
I dont have any idea o how to use the mass matrix, help me.
13 years ago | 0 answers | 0
0
answersQuestion
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
answersQuestion
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