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

조회 수: 1 (최근 30일)
ARAH MIZORI
ARAH MIZORI 2021년 8월 30일
답변: Wan Ji 2021년 8월 30일
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

채택된 답변

Wan Ji
Wan Ji 2021년 8월 30일
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)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by