David Akinpelu
Followers: 0 Following: 0
Statistics
2 Questions
0 Answers
RANK
123,626
of 295,689
REPUTATION
0
CONTRIBUTIONS
2 Questions
0 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 20,266
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,317
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
I want to solve a multi point boundary condition differential equation. I keep getting error on my Bvp4c line, I tried debugging it, but could resolve the error.
function rhs = bvp_rhs(x,T) rhs=[T(2); ((v/(2*a))^2)* T(1)]; function bc=bvp_bc(Tl,Tm,Tr) bc=[Tl(1);Tm(21);(1/k)*e^(vx/...
6 years ago | 1 answer | 0
1
answerQuestion
I am pretty new to MATLAB. I am try to use ode 45 to solve a differential equation arising from a multiple source boundary condition. I want to use a for loop for the boundary condition, but I guess I am missing something
function Temp = proj(x,h) b=h(1); g=h(2); v=20; a=0.5; k=45; q=5000; Temp(1,1)=g; for x=0:200 if ...
6 years ago | 1 answer | 0