mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-04-17 17:50:17 +00:00
5 lines
155 B
Matlab
5 lines
155 B
Matlab
function Y = Select(X, rows) % x,y,z,x,y,z,...
|
|
Y1 = X(3*(rows-1)+1, :);
|
|
Y2 = X(3*(rows-1)+2, :);
|
|
Y3 = X(3*(rows-1)+3, :);
|
|
Y = [Y1; Y2; Y3]; |