How do I only display the 5 answers in the command window once?

1 visualizzazione (ultimi 30 giorni)
function [SA]=equTriPrismSurfArea(s,h)
SA = ((sqrt(3)./2) .* s.^2 + 3.*s.*h);
end
s = [1 2 3 4 5];
h = [1 2 3 4 5];
for i = 1:5
s1 = s(i);
h1 = h(i);
SA = equTriPrismSurfArea(s,h);
fprintf ("\nTotal surface area of equilateral triangular prism is %f\n",SA)
end

Risposta accettata

Wan Ji
Wan Ji il 30 Ago 2021
s = [1 2 3 4 5];
h = [1 2 3 4 5];
SA = zeros(size(s));
for i = 1:5
s1 = s(i);
h1 = h(i);
SA(i) = equTriPrismSurfArea(s,h);
end
fprintf ("\nTotal surface areas of equilateral triangular prisms are %f\n",SA)

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by