A recursive matrix sum
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Noa Yelin
el 21 de Oct. de 2020
Comentada: Noa Yelin
el 21 de Oct. de 2020
Hey
I wrote a function that gives u the sum of the matrix. I try to write it with rerursive, but it doen't get well. i need an explanation..
this is my code -
function total=ff(l)
total = 0;
for i = 1:numel(l)
total = total+l(i);
end
any help?
2 comentarios
Respuesta aceptada
Asad (Mehrzad) Khoddam
el 21 de Oct. de 2020
You function is not recursive
function total=ff(l)
lp=l(:);
if numel(l) == 1
total = l(1);
else
total = lp(end) + ff(lp(1:end-1));
end
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!