Getting a function error "Output argument "z" (and maybe others) not assigned during call"
조회 수: 1 (최근 30일)
이전 댓글 표시
Hey guys im new to matlab ive been trying to do a power function but I've been getting this error and Im not understanding why
Here is the function
function [z] = power1(x,y)
if y>=0
if y==0
z=1;
end
if y==1
z=x;
end
z=x*power1(x,y-1);
end
end
댓글 수: 0
채택된 답변
Alexandra Harkai
2016년 11월 1일
편집: Alexandra Harkai
2016년 11월 1일
If y<0, variable z doesn't get any value assigned to it.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!