I was hoping to understand how to create additional space in an array so my array elements are aligned with the headings above
% Program that display's distance travelled, Liters of fuel used
% Km/s per liter liters per 100Km
% Define and assign values to variables
% Create functions to calculate Km/L & L/100Km
% Display results
Distance=100; % Km's travelled
Fuel=25; % Litres of fuel used
FConsump=Distance./Fuel; % Calculate Km's per Liter
Economy=Fuel./Distance.*100; % Calculate Litres per 100Km
disp('Distance Liters Used Km/L L/100Km'); % Display headings
disp([Distance, Fuel, FConsump, Economy]); % Display values

 Akzeptierte Antwort

Simon Chan
Simon Chan am 17 Jul. 2021
Bearbeitet: Simon Chan am 17 Jul. 2021

0 Stimmen

Use sprintf and tab, of course, need some manual adjustment.
disp(sprintf('Distance\tLiters Used\tKm/L\tL/100Km'));
disp(sprintf('%d\t\t\t%d\t\t\t%d\t\t%d',Distance, Fuel, FConsump, Economy))

1 Kommentar

Daniel Lardner
Daniel Lardner am 18 Jul. 2021
Hi Simon,
Thanks for the explanation. I am new to Matlab and was not aware of this function.
Many thanks.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB Support Packages finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by