How to change output from column to row?
조회 수: 19 (최근 30일)
이전 댓글 표시
a = input('Enter first number:');
b = input('Enter second number:');
for A=a:b
reshape(A,1,[]);
fprintf('%d \n', A)
end
this is my code but I cant change the answer to horizontal orientation
The output goes like this
Enter first number:1
Enter second number:3
1
2
3
댓글 수: 0
채택된 답변
Arthur Roué
2020년 7월 17일
편집: Arthur Roué
2020년 7월 17일
You are printing in a loop with a line return at each step. This works :
a = input('Enter first number:');
b = input('Enter second number:');
fprintf('%d ', a:b);
fprintf('\n');
댓글 수: 0
추가 답변 (1개)
Sydney Lang
2020년 7월 17일
편집: Sydney Lang
2020년 7월 17일
I'm not quite sure what you're doing with the reshape.
Use the .' notation to transpose a matrix
x = 1
2
3
x = x.';
x = 1 2 3
댓글 수: 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!