필터 지우기
필터 지우기

putting all my outputs into a vector using print

조회 수: 1 (최근 30일)
lowcalorie
lowcalorie 2012년 3월 4일
here is my code:
n = 0;
x = input('input an x value ')
while n~=7
n = n+1;
if rem(x,2)==0
fx = (x)/2
x=fx;
elseif rem(x,2)~=0
px = (3*(x))+1
x=px;
end
end
for x=3 i need my output to look like this
3,10,5,16,8,4,2,1 I have the outputs right i just need them in a vector using print

답변 (1개)

Walter Roberson
Walter Roberson 2012년 3월 4일

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by