필터 지우기
필터 지우기

how to print all of output value from "for loping" function ?

조회 수: 2 (최근 30일)
ElizabethR
ElizabethR 2016년 4월 13일
댓글: ElizabethR 2016년 4월 14일
i have a code :
function f=coba1(a);
for j=1:a
f=j;
end
.....................
a=5;
b=coba1(a);
...........................
f =1
f =2
f =3
f =4
f =5
b =5
but, the variabel b only save the last value of function loop. so, how to save all of value from this looping ? thanks

채택된 답변

Andrei Bobrov
Andrei Bobrov 2016년 4월 13일
function f=coba1(a)
f = zeros(a,1);
for jj=1:a
f(jj)=jj;
end
or
f = (1:a).';

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by