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

1 view (last 30 days)
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

Accepted Answer

Wan Ji
Wan Ji on 30 Aug 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)

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!