clc;clear;
dia_n = input('Write diameter number: ');
dia_min = input('write minimum diameter: ');
dia_max = input('Write maximum diameter: ');
dia = linspace(dia_min, dia_max, dia_n);
den_n = input('Write density number: ');
den_min = input('Write minimum density: ');
den_max = input('Write maximum density: ');
den = linspace(den_min, den_max, den_n);
nLV = input('Write water LV: ');
m = 0;
for a = 1:numel(dia)
fprintf('\nTank Diameter=%.1f meters\nrho/H \n', dia(a));
st_co = dia(a)/nLV;
LV = linspace(st_co, dia(a), nLV);
printLV = sprintf('%0.1f\t\t\t', LV);
fprintf('\t\t\t%s\n\n', printLV)
for b = 1:numel(den)
fprintf('\t%4d', den(b));
for c = 1:numel(LV)
r = dia(a) / 2;
h = LV(c);
v = (pi*h^2*(3*r - h)) / 3;
m(b, c) = den(b) * v;
fprintf('\t%2.0f', m(b, c));
end
fprintf('\n');
end
fprintf('\n');
end
3 Comments
Rik (view profile)
Direct link to this comment
https://fr.mathworks.com/matlabcentral/answers/478620-how-to-shorten-space-between-space-in-command-window#comment_741523
Geon Jung (view profile)
Direct link to this comment
https://fr.mathworks.com/matlabcentral/answers/478620-how-to-shorten-space-between-space-in-command-window#comment_741533
Jan (view profile)
Direct link to this comment
https://fr.mathworks.com/matlabcentral/answers/478620-how-to-shorten-space-between-space-in-command-window#comment_742123
Sign in to comment.