Borrar filtros
Borrar filtros

how to delete a column from the matrix

7 visualizaciones (últimos 30 días)
sani ars
sani ars el 8 de Jun. de 2012
For example, I have a matrix:
a = [1.02 3.04 5.06 0.56; 4.01 2.09 4.07 0.87; 1.03 3.05 4.09 2.08]
and say I want to delete the first column from each row.... how can I do this??.. what will be the syntax for it??...

Respuesta aceptada

Walter Roberson
Walter Roberson el 8 de Jun. de 2012
a(:,1) = [];
  2 comentarios
Andrei Bobrov
Andrei Bobrov el 9 de Jun. de 2012
a = a(:,2:end);
Ryan
Ryan el 9 de Jun. de 2012
a = (reshape(a',length(a(1,:)),length(a(:,1)-1)))';
or something like that.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by