Remove field from structure nested in a cell array

Hi,
I have a cell array (y_fast) of 16x1. Inside of each cell, there is a structure with two fields: Outdata and Outlist. I want to remove field called Outdata from each cell array. The complete name of field I want to remove is in my code y_fast{1,1}.Outdata. I wirte this easy command as example for the first cell array:
y_fast{1,1}=rmfield(y_fast{1,1},Outdata);
but comes the following error:
Undefined function or variable 'Outdata'.
although Outdata is already defined.
Could someone wirte me why??

 Respuesta aceptada

madhan ravi
madhan ravi el 7 de Sept. de 2019
Editada: madhan ravi el 7 de Sept. de 2019
cellfun(@(x)rmfield(x,'Outdata'),y_fast,'un',0) % see the quotes around Outdata
doc rmfield
help rmfield

4 comentarios

Laila Rezai
Laila Rezai el 7 de Sept. de 2019
Thank you for the very good answer. It runs without any error but still does not remove the field Outdata from the structure!!!
madhan ravi
madhan ravi el 7 de Sept. de 2019
When you ask a question , first and foremost attach the datas as .mat file.
Assign the result to the variable
y_fast = cellfun(@(x)rmfield(x,'Outdata'),y_fast,'un',0)
Laila Rezai
Laila Rezai el 7 de Sept. de 2019
Thank you very much:). It works now.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Preguntada:

el 7 de Sept. de 2019

Comentada:

el 7 de Sept. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by