CSV file imported with readmatrix is misreading the data in the CSV file
이전 댓글 표시
I'm trying to read a roughly 400 row csvfile consisting of one column of 3 digit numbers and 35 colums of 8 digit integres. The resulting array consists of 5 digit numbers with a decimal point after the first number. This isn't too helpful. The numbers represent measured frequencies in the 15MHz range so I'm losing data when importing
답변 (4개)
per isakson
2019년 11월 18일
편집: per isakson
2019년 11월 18일
"The resulting array consists of 5 digit numbers with a decimal point after the first number." I assume that you describe how the numbers are displayed in the Command Window.
Try
format long
Example:
>> format long
>> pi
ans =
3.141592653589793
>> format short
>> pi
ans =
3.1416
>>
"I'm losing data when importing" No, it's only a question of how the values are presented.
James Andrada
2019년 11월 18일
0 개 추천
댓글 수: 1
per isakson
2019년 11월 18일
"is there any way to associate the format type with a variable" No
James Andrada
2019년 11월 18일
0 개 추천
댓글 수: 1
per isakson
2019년 11월 18일
편집: per isakson
2019년 11월 18일
Example
>> fprintf( 1, '%.2f\n', pi )
3.14
>> fprintf( 1, '%.4f\n', pi )
3.1416
카테고리
도움말 센터 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!