Effacer les filtres
Effacer les filtres

How to read a single column for specific data?

1 vue (au cours des 30 derniers jours)
Ara
Ara le 31 Déc 2012
Hi,
How can I read this column just for specific data?
x=[1;2;3;4;5;6;7;8;9;10];
I just want to read 1,2,3 and 9, 10 and calculate some formula just for these data.
Could you please guide me how?

Réponse acceptée

Walter Roberson
Walter Roberson le 31 Déc 2012
How do you know which data you want to "read"? Is it the 1st, 2nd, 3rd, 9th and 10th positions? If so then
x([1 2 3 9 10])
  5 commentaires
Walter Roberson
Walter Roberson le 31 Déc 2012
data(data(:,1) < 10 | data(:,1) >= 22, :)
Ara
Ara le 31 Déc 2012
Thank you, walter. Happy New Year!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by