Azzera filtri
Azzera filtri

Specify max limit to data from data file

2 visualizzazioni (ultimi 30 giorni)
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!

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 10 Ott 2013
x = D(1:N,1);
y = D(1:N,2);

Più risposte (0)

Categorie

Scopri di più su Graphics Object Identification in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by