How to extract all the values from a while loop into a vector

조회 수: 1 (최근 30일)
Agent Cooper
Agent Cooper 2014년 4월 28일
편집: Andrei Bobrov 2014년 4월 28일
I have the following function
function c = nice(n)
c = n
while c ~= 1
if rem(c,2) == 0
c = c/2
else c = 3*c+1
end
end
and I am trying to insert all the c values into one vector. Any hints on how can I do it?

채택된 답변

Mischa Kim
Mischa Kim 2014년 4월 28일
편집: Mischa Kim 2014년 4월 28일
AC, use something like
function c = nice(n)
ii = 1;
c(ii) = n;
while c(ii) ~= 1
ii = ii + 1;
if rem(c(ii-1),2) == 0
c(ii) = c(ii-1)/2;
else
c(ii) = 3*c(ii-1) + 1;
end
end
end

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2014년 4월 28일
편집: Andrei Bobrov 2014년 4월 28일
function c = nice(n)
c = n;
jj = 0;
while c(end) ~= 1
if rem(c(end),2) == 0
h = c(end)/2;
else
h = 3*c(end)+1;
end
c = [c;h];
jj = jj + 1;
if jj >= 30, break; end
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by