X^n calculation
2 次查看(过去 30 天)
显示 更早的评论
Calculate the n th power of a given number with loops
0 个评论
回答(1 个)
Asmit Singh
2021-6-1
%Number is the base number
number = 5;
ans = 1;
% n is the power to which the number needs to be raised
n = 3;
while(n~=0)
ans = ans*number;
n=n-1;
end
1 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!