Specify max limit to data from data file

end
D = load('data.txt');
x = D(:,1);
y = D(:,2);
I would like to specify data to be passed to a function to be limited to N indices.
Anyone have any suggestions?
Cheers!

 Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 10 Okt. 2013

0 Stimmen

x = D(1:N,1);
y = D(1:N,2);

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 10 Okt. 2013

Kommentiert:

am 10 Okt. 2013

Community Treasure Hunt

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

Start Hunting!

Translated by