How do I create a table of each iteration from my while loop?
조회 수: 6 (최근 30일)
이전 댓글 표시
v0=35.35;
c=13.45;
m=67.5;
g=9.81;
t=4;
%vf=0;
iteraton=0;
while iteraton<8
iteraton=t+iteraton;
vf=v0+(g-c/m*v0)*t;
v0=vf;
end
So this is my code for Euler's method, I would like to create a table of each iteration but don't know how to. Thank you in advance!
댓글 수: 1
Amal George M
2019년 4월 1일
Could you please provide some additional details on the variable or data, to be stored in the table?
답변 (3개)
djedoui Nassim
2019년 4월 1일
Hello
you can do so
v0=35.35;
c=13.45;
m=67.5;
g=9.81;
t=4;
%vf=0;
iteraton=0;
while iteraton<8
iteraton=t+iteraton;
vf=v0+(g-c/m*v0)*t;
v0=vf;
tabl(iteraton)=vf;
end
댓글 수: 0
KSSV
2019년 4월 1일
v0=35.35;
c=13.45;
m=67.5;
g=9.81;
t=4;
%vf=0;
iteraton=0;
iter = zeros([],1) ;
Vf = zeros([],1) ;
count = 0 ;
while iteraton<8
count = count+1 ;
iteraton=t+iteraton;
vf=v0+(g-c/m*v0)*t ;
v0=vf ;
iter(count) = iteraton ;
Vf(count) = vf ;
end
iter = iter'; Vf = Vf';
T = table(iter,Vf)
댓글 수: 0
safi khan
2020년 1월 4일
Here is the code of "Table 2" on while loop.
a=1;
while a<06;
z=a*2;
disp(z);
a=a+1;
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!