Effacer les filtres
Effacer les filtres

How can I choose a set of columns from my table. I have to get the means of let's say columns 1 and 5, columns 2 and 6 etc from 20 columns. Thanks

2 vues (au cours des 30 derniers jours)
Does this look like a correct line of code? x = mean(w(:,[1:4:10 11:4:20]));

Réponse acceptée

Sadik
Sadik le 26 Mai 2017
Looks correct. Means of columns 1 and 5, for instance, would look like this:
x = mean(w(:,[1 5]))
Best.
  1 commentaire
Abdullah Al Jaja
Abdullah Al Jaja le 26 Mai 2017
Thanks for answering my question. But how can I add the rest of the columns (1&5 2&6 3&7 etc...)?
Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by