X^n calculation
显示 更早的评论
回答(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 个评论
James Tursa
2021-6-1
@Asmit Singh Please do not post complete answers to homework questions.
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!