Borrar filtros
Borrar filtros

How to create a Nx3 array from Nx4 array

10 visualizaciones (últimos 30 días)
Amadeus Xu
Amadeus Xu el 27 de Nov. de 2020
Comentada: Ameer Hamza el 27 de Nov. de 2020
Hi all,
If I have a 100x1 cell array which contains 100 Nx4 double array where N is a variable size, how to I create a new cell array which is also 100x1, but contains a Nx3 double array that contains just columns 2,3 and 4 of the previous Nx4 array?
Hope that make sense! I'd appreciate any help with this problem.
Thanks in advance!

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 27 de Nov. de 2020
You can use cellfun()
C1; % 100x1 with Nx4 matrices
C2 = cellfun(@(x) {x(:,2:end)}, C1);
  2 comentarios
Amadeus Xu
Amadeus Xu el 27 de Nov. de 2020
Thank you Ameer, that works perfectly!
Ameer Hamza
Ameer Hamza el 27 de Nov. de 2020
I am glad to be of help!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Type Conversion 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