Hi All,
Ive tried importing my data via this code;
Spill = importdata('Spill.txt');
T = Spill(:,1);
C = Spill(:,2);
plot(T,C)
xlabel('Time / Days');
ylabel('Concentration / ppb')
but it doesn't work as it says "Index exceeds matrix dimensions.". It needs to be inputted by code and not just the import button. Can someone help? Ive attached the .txt file

 Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 13 Avr 2016
Modifié(e) : Azzi Abdelmalek le 13 Avr 2016

4 votes

Spill1 = importdata('Spill.txt');
Spill=Spill1.data
T = Spill(:,1);
C = Spill(:,2);
plot(T,C)
xlabel('Time / Days');
ylabel('Concentration / ppb')

Plus de réponses (2)

parham kianian
parham kianian le 2 Sep 2020

0 votes

I think it is much easier to use textread function. Following link describe in full detail how to use this function to import data from a text file:

Catégories

En savoir plus sur Data Import and Analysis 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!

Translated by