how to make the output from a for loop displayed in an horizontal pattern
4 次查看(过去 30 天)
显示 更早的评论
I need syntax in matlab to make answer displayed as (1 by 8 ) for the case below exactly the way the for loop figures below are arranged. for f = [1 4 8 10 12 16 18 20]; b=2; c=1; d=1; n=4; z=b*c*d*n disp(z) % make z display answer as 10 ,20,30,40,50 etc end Thanks
0 个评论
采纳的回答
rifat
2014-4-27
Use fprintf() instead of disp() within for loop. For example,
fprintf('%d ',z);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!