Getting a function error "Output argument "z" (and maybe others) not assigned during call"
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Ramy El Bazi
il 1 Nov 2016
Modificato: Alexandra Harkai
il 1 Nov 2016
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 Commenti
Risposta accettata
Alexandra Harkai
il 1 Nov 2016
Modificato: Alexandra Harkai
il 1 Nov 2016
If y<0, variable z doesn't get any value assigned to it.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!