how can i compute the length of an integer?
Mostrar comentarios más antiguos
if i have
int = 12345;
length_int = 5;
???
1 comentario
Jan
el 4 de En. de 2013
What is the "length" of -1 and 0?
Respuesta aceptada
Más respuestas (2)
Sean de Wolski
el 4 de En. de 2013
Editada: Sean de Wolski
el 4 de En. de 2013
Edit
nnz(num2str(int) - '-')
4 comentarios
Why this cast to an double array? Shouldn't
numel(num2str(int))
be enough?
Sean de Wolski
el 4 de En. de 2013
Friedrich, neither work actually, consider -12345.
Friedrich
el 4 de En. de 2013
Good point Sean. But then
numel(num2str(abs(int)))
should do ;)
Sean de Wolski
el 4 de En. de 2013
arghh, you win!
Davide Ferraro
el 4 de En. de 2013
Casting the variable into a string may be risky because you may get to "unexpected" cases such as:
int = 12345678901234567890123
numel(num2str(int))
ans =
12
You may consider a numeric approach using LOG10: floor(log10(int))+1 all numbers between 10 and 100 will have a LOG10 between 1 and 2 so you can use FLOOR to get the lower value (1 in this case) and then you need to add the value 1 cause you are trying to compute the number of digits and not the power of ten.
1 comentario
why, it works:
>> int = 12345678901234567890123
numel(num2str(int))
int =
1.2346e+22
ans =
23
Categorías
Más información sobre Numeric Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!