return column vector (t(i+1) & y(i+1)) instead of row vector

조회 수: 1 (최근 30일)
ken
ken 2022년 4월 3일
답변: Walter Roberson 2022년 4월 3일
function [y,t] = euler_timestep(f,t0,tf,alpha,N)
h=(tf-t0)/N;
t(1)=t0;
y(1)=alpha;
for i=1:N
t(i+1)=t(i)+h;
y(i+1)=y(i)+h*f(t(i),y(i));
end

채택된 답변

Walter Roberson
Walter Roberson 2022년 4월 3일
t = zeros(N+1,1);
y = zeros(N+1,1);

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by