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
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Abdullah Al Jaja
am 26 Mai 2017
Kommentiert: Abdullah Al Jaja
am 26 Mai 2017
Does this look like a correct line of code? x = mean(w(:,[1:4:10 11:4:20]));
0 Kommentare
Akzeptierte Antwort
Sadik
am 26 Mai 2017
Looks correct. Means of columns 1 and 5, for instance, would look like this:
x = mean(w(:,[1 5]))
Best.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!