Azzera filtri
Azzera filtri

How to I specify rows that are evenly spaced?

4 visualizzazioni (ultimi 30 giorni)
Ashley
Ashley il 11 Set 2013
Hello, I am trying to access the 30th row of a column vector, and then the 68th row, and then the 106th row, all the way up to 1474. So basically, row 30, and then a difference of 38 up to row 1474. I need to access these data in order to plot them. Thank you.
Ashley

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 11 Set 2013
Modificato: Azzi Abdelmalek il 11 Set 2013
A(30:38:end)
%Example
A=rand(1474,1);
out=A(30:38:end);
plot(out)
  1 Commento
Roger Stafford
Roger Stafford il 11 Set 2013
Based on the wording of the question, it should probably be:
out=A(30:38:1474);
in case A has more than 1474 rows.

Accedi per commentare.

Categorie

Scopri di più su Line Plots 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