Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How do I get Matlab to recognise a text file as numerical values when importing it ?

1 vue (au cours des 30 derniers jours)
Lavinia Trifoi
Lavinia Trifoi le 8 Nov 2016
Clôturé : MATLAB Answer Bot le 20 Août 2021
I need to input all the data from this file into Matlab but have it recognize the txt as numerical values. I struggling on how to do that.
The file is at this link:

Réponses (2)

George
George le 8 Nov 2016
Check out the formatSpec portion of the textscan doc.

Walter Roberson
Walter Roberson le 8 Nov 2016
%load a copy of the file locally
url = 'https://coastwatch.glerl.noaa.gov/statistic/ice/dat/g2011_2012_ice.dat'
tfile = [tempname '.dat'];
urlwrite(url, tfile);
%read it in
data = readtable(tfile);

Cette question est clôturée.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by