How to taking other element in nth column?

6 Ansichten (letzte 30 Tage)
AnhThu Le
AnhThu Le am 31 Aug. 2017
Beantwortet: KSSV am 31 Aug. 2017
extract the variablefrom an 88x6 matrice ? Every other element in the fifth column How can I co

Antworten (1)

KSSV
KSSV am 31 Aug. 2017
A = rand(88,6) ; % A random data matrix
% Extracting 4th column alternate element
B = A(1:2:end,4) ;
% Extracting fourth complete column
C = A(:,4) ;

Kategorien

Mehr zu Creating and Concatenating Matrices 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!

Translated by