A Ghost Data In Matlab???
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tyann Hardyn
el 10 de Feb. de 2022
Comentada: Walter Roberson
el 10 de Feb. de 2022
Hi, Community
I just found a very very awkward data in matlab, especially when i pointing a variable data (from table data) which is shown as a normal double data when i debug it. BUT when i evaluate the variable data, it become significanly different. Here is the issue :
I cant understand why the 2015 Double data become 0.2015 when i evaluate it. Its works as normal with a same other data.
Its sooo Impossible... I just re try it and its still not works... How i can fix it? Would anyone lend me a hand to explain and solve this Ghost Data? Thanks
3 comentarios
Rik
el 10 de Feb. de 2022
@Andres, you should expand your comment a bit (explaining the difference between data and the display of that data) and post it as an answer.
Tyann Hardyn
el 10 de Feb. de 2022
Editada: Tyann Hardyn
el 10 de Feb. de 2022
Respuesta aceptada
Rik
el 10 de Feb. de 2022
The way data is displayed and the way data is stored are separated in Matlab. If you take a look at this:
[12345.1 2015]
You will see that there is an exponent at the top, and everything is scaled to that factor. The data is still the same, just the way it is printed in the command window is different.
Note that if you want people to be able to reproduce your situation, you should make sure you can use the run code feature. If the online environment can run it, we can at least see what is happening.
2 comentarios
Walter Roberson
el 10 de Feb. de 2022
You should not be using 'InputFormat' together with multiple numeric inputs to datetime(). InputFormat is only for use with a DateStrings input -- a character vector, or a cell array of character vectors, or a string scalar, or a string array.
If you had numeric data that needed to be broken apart, such as 20100317 needing to be interpreted as March 17, 2010, then you would be passing in a single numeric position and using 'ConvertFrom'.
If you pass in multiple numeric positions and you want to control what the output looks like, then you should be using 'Format' not 'InputFormat' . 'Format' controls what the output looks like; 'InputFormat' controls how characters are to be converted.
Más respuestas (0)
Ver también
Categorías
Más información sobre Geographic Plots 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!