How do i merge graphs in bvp4c format ?

조회 수: 1 (최근 30일)
Aryaman Patel
Aryaman Patel 2019년 7월 14일
편집: Aryaman Patel 2019년 7월 14일
What are a various ways that a loop can be created ? Also what is the use of 'global' ?

답변 (1개)

Stephan
Stephan 2019년 7월 14일
hold on
for k = 1:4;
Ha = k;
init = bvpinit(linspace(-1,1,20),[0 0]);
sol=bvp4c(@(x,y)rhs_bvp(x,y,Ha),@bc_bvp,init);
x = linspace(-1,1,20);
BS(:,:,k) =deval(sol,x);
plot(BS(1,:,k),x, '--');
xlim([-1 1])
end
hold off
function rhs=rhs_bvp(x,y,Ha)
rhs = [y(2); ((Ha^2+(1/3))/(1+0.3))*y(1)];
end
function bc=bc_bvp(yl,yr)
bc = [yl(1)-(0.1*1.3)*yl(2)-1; yr(1)+(0.1*1.3)*yr(2)+1];
end

카테고리

Help CenterFile Exchange에서 Downloads에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by