how do i create a recursive function that gives the number of digits in an integer? i.e. does the same that length function does in MATLAB
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
function r = length_of(n)
end
it seems to be easy but right now i'm stuck with it
0 comentarios
Respuesta aceptada
Más respuestas (1)
Wayne King
el 30 de Mzo. de 2013
Why recursive?
A = 12;
B = 1000;
length(num2str(A))
length(num2str(B))
1 comentario
Ver también
Categorías
Más información sobre Inputs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!