How to properly format a data table with fprintf?

조회 수: 7 (최근 30일)
Kristof Lile
Kristof Lile 2021년 9월 21일
답변: Stephen23 2021년 9월 21일
Hello, I am a bit new to MATLAB and I am having some trouble learning how to properly format using fprintf.
For example, given that
A=[1.00,2.00,3.00,4.00,5.00];
How would I use fprintf to get something that looks like this?:
Numbers 1.00 2.00 3.00 4.00 5.00
Here is what I tried, but I cannot get the "Numbers" heading correct with the values after it horizontally.
>> A=[1,2,3,4,5];
fprintf('Numbers %1.2f\n',A)
Numbers 1.00
Numbers 2.00
Numbers 3.00
Numbers 4.00
Numbers 5.00
>>
I read a bit of MATLAB's guide on fprintf, but it did not really help me understand.
Any help would be greatly appreciated.
Thanks!

답변 (2개)

Star Strider
Star Strider 2021년 9월 21일
In the numeric edit descriptors, the value to the left of the decimal is the field width (this includes all the numbers, the sign, and the decimal), or if omitted, only considers the precision to the right of the decimal, so to get the result you want, the format descirptor would have to be:
A=[1.00,2.00,3.00,4.00,5.00];
fprintf(['Numbers ' repmat('%.2f ',1,numel(A))],A)
Numbers 1.00 2.00 3.00 4.00 5.00
fprintf('\n')
There are also other variations to experiment with.
.

Stephen23
Stephen23 2021년 9월 21일
A = [1,2,3,4,5];
fprintf('Numbers%s\n',sprintf(' %1.2f',A))
Numbers 1.00 2.00 3.00 4.00 5.00

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by