How can i get multiple values in fprintf?

조회 수: 1 (최근 30일)
JJ
JJ 2018년 4월 11일
댓글: JJ 2018년 4월 11일
So i have 'n' lots of integers every time I run the script. My code displays my fprintf n times...
fprintf('I have numbers: %d \n',numbers)
Is there a way to display all the 'n' numbers in the same line rather than repeating?
So I have if n=4
I have numbers: 1
I have numbers: 2
I have numbers: 3
I have numbers: 4
and I want:
I have numbers: 1,2,3,4
If I knew n i could put multiple %d 's in the fprintf.... but my n changes every time...

채택된 답변

KSSV
KSSV 2018년 4월 11일
n = [1, 2, 3];
fprintf('I have numbers: %s\n', sprintf('%d ', n))
  댓글 수: 3
JJ
JJ 2018년 4월 11일
Ok so my numbers are being calculated and change each time so like:
n=10
number=2*n
fprintf('I have numbers: %d \n',numbers)
JJ
JJ 2018년 4월 11일
Its ok I have it now thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by