Aligning numbers with text in a table

조회 수: 4 (최근 30일)
Aleem Andrew
Aleem Andrew 2021년 11월 16일
편집: Jan 2021년 11월 16일
In the code below, the numbers all occupy 13 characters of space. How do you align the words and numbers so each word also occupies 13 characters of space like in the example below the code?
fprintf('%.13s %.13s %.13s %.13s \n', 'a', 'yes','async','asychronous');
fprintf('%3.10f %3.10f %3.10f %3.10f', 33.12, 5.3819, 291.210, 39.2111);
a yes async asychronous
33.1200000000 5.3819000000 291.2100000000 39.2111000000

채택된 답변

Jan
Jan 2021년 11월 16일
편집: Jan 2021년 11월 16일
% 13 characters and aligned to the right:
fprintf('%13s %13s %13s %13s \n', 'a', 'yes','async','asychronous');
a yes async asychronous
% 13 characters and aligned to the left:
fprintf('%-13s %-13s %-13s %-13s \n', 'a', 'yes','async','asychronous');
a yes async asychronous
fprintf('%3.10f %3.10f %3.10f %3.10f', 33.12, 5.3819, 291.210, 39.2111);
33.1200000000 5.3819000000 291.2100000000 39.2111000000
It was only the "." which is not used for the %s format.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by