Format Specifier in textscan

3 visualizaciones (últimos 30 días)
Bhoomi Shah
Bhoomi Shah el 3 de Jun. de 2020
Respondida: Walter Roberson el 3 de Jun. de 2020
Refer to the image.
It has the question and answer attached to it.
If the result getting saved it correct, I wonder why the formatspecifier is wrong.

Respuesta aceptada

madhan ravi
madhan ravi el 3 de Jun. de 2020
%d
  1 comentario
Bhoomi Shah
Bhoomi Shah el 3 de Jun. de 2020
Editada: Bhoomi Shah el 3 de Jun. de 2020
Can try, thanks

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 3 de Jun. de 2020
The file contains values that exceed 2^31-1 which is the limit for signed 32 bit integers. If you are required to read into 32 bit integers, then use '%u32'.
%d will not work for this; %d is the same as %d32 which is 32 bit signed integer.
Typically if you are not told to store as integer data types, you would most often use %f format to read into double. This is a bit risky in that values exceeding 2^53 might not be stored correctly, so you have to know the range of values you are expecting to know if it is reasonable to use double. If not then you would use %d64 or %u64

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by