Combine two column vectors when importing data from .csv into one
이전 댓글 표시
As an export from a sensor I have my data in a .csv data. However, the .csv data separates in two different columns the values of the integer and the decimal point. When importing the data I would like to merge these two columns and seperate them with a decimal point. I do not know how this works. I have already tried combining the two vector columns using sscanf(sprintf(...)) and dividing it by 100, however the amount of digits in my decimal part (Column B) is not consistently the same.
A B
0 15
1 2
3 12
0 02
What I would like to have as a result is:
C
0.15
1.2
3.12
0.02
Can anyone give me some advice?
Thanks! :)
댓글 수: 2
Guillaume
2020년 3월 5일
Can you attach an example of the csv file. Possibly, the problem can be fixed by a better import rather than trying to fix it after the fact.
Samuel Bofferding
2020년 3월 5일
편집: Samuel Bofferding
2020년 3월 5일
답변 (2개)
카테고리
도움말 센터 및 File Exchange에서 Large Files and Big Data에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!