Select specific digits of a number
146 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dimitris
el 24 de En. de 2013
Comentada: Rafael Rodríguez
el 30 de Abr. de 2021
How can I select specific parts of a number?
For example if we have x=953, I want to select specifically the first digit (or the last two) and save it in another variable, so the outcome would be y=9 (or y=53)
Thanks
0 comentarios
Respuesta aceptada
Evgeny Pr
el 24 de En. de 2013
x = 953
d = 100
r = mod(x, d) % 53
y = (x - r) / d % y = 9
0 comentarios
Más respuestas (3)
Thorsten
el 24 de En. de 2013
x = 953;
s = num2str(x);
y1 = sscanf(s(1), '%d')
y2 = sscanf(s(2:end), '%d')
0 comentarios
Petorr
el 12 de Abr. de 2019
c = 123.45
for d = [0.01 0.1 1 10 100]
round( (mod(c,10*d)-mod(c,d))/d )
end
[round() is needed because of binary precision]
0 comentarios
Ver también
Categorías
Más información sobre Logical 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!