CSV file imported with readmatrix is misreading the data in the CSV file
Afficher commentaires plus anciens
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
Réponses (4)
per isakson
le 18 Nov 2019
Modifié(e) : per isakson
le 18 Nov 2019
"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
le 18 Nov 2019
0 votes
1 commentaire
per isakson
le 18 Nov 2019
"is there any way to associate the format type with a variable" No
James Andrada
le 18 Nov 2019
0 votes
1 commentaire
per isakson
le 18 Nov 2019
Modifié(e) : per isakson
le 18 Nov 2019
Example
>> fprintf( 1, '%.2f\n', pi )
3.14
>> fprintf( 1, '%.4f\n', pi )
3.1416
James Andrada
le 18 Nov 2019
0 votes
Catégories
En savoir plus sur Multidimensional Arrays dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!