Borrar filtros
Borrar filtros

Swap the First and Last Column (CODY)

2 visualizaciones (últimos 30 días)
Saviyo Therattil
Saviyo Therattil el 7 de Jun. de 2021
Respondida: KSSV el 7 de Jun. de 2021
function B = swap_ends(A)
X = A(:,end);
C = A(:,1);
A(:,1) = X;
A(:,end) = C;
B = A;
end
How do I reduce it into a length of 7? (Top length is 7).

Respuestas (1)

KSSV
KSSV el 7 de Jun. de 2021
A = rand(1,5) ;
A([1 end]) = A([end 1])

Categorías

Más información sobre Two y-axis en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by