A Ghost Data In Matlab???
조회 수: 4 (최근 30일)
이전 댓글 표시
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 :
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/889920/image.png)
I cant understand why the 2015 Double data become 0.2015 when i evaluate it. Its works as normal with a same other data.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/889925/image.png)
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
Rik
2022년 2월 10일
@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.
채택된 답변
Rik
2022년 2월 10일
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
Walter Roberson
2022년 2월 10일
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.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Geographic Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!