How to align headings with array elements
이전 댓글 표시
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
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 MATLAB Support Packages에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
