putting all my outputs into a vector using print
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (1 件)
Walter Roberson
2012 年 3 月 4 日
See the mechanisms used in (for example) http://www.mathworks.com/matlabcentral/answers/31053-returning-and-plotting-values-from-while-loop-results
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!