how to get a part of a number

2 visualizaciones (últimos 30 días)
matthieu
matthieu el 8 de Oct. de 2022
Respondida: Voss el 8 de Oct. de 2022
x = 1234567891011112
The output should be 56

Respuestas (1)

Voss
Voss el 8 de Oct. de 2022
x = 1234567891011112;
x_str = num2str(x)
x_str = '1234567891011112'
x_str = x_str([5 6])
x_str = '56'
str2double(x_str)
ans = 56

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by