필터 지우기
필터 지우기

How to remove an element from a structure array using matfile handler

조회 수: 1 (최근 30일)
Abdurrehman
Abdurrehman 2018년 7월 27일
편집: Walter Roberson 2018년 7월 28일
Hi,
I am using following piece of code to remove an element from a structure array, but its not working please help
MatfileHandler.StructureArray(index,:)=[];
since the above wasn't working thus I used following statements.
AllElements = MatfileHandler.StructureArray; %loaded all elements in AllElements
AllElements(index,:)=[]; %Removed the required element
MatfileHandler.StructureArray = AllElements; %Resaving the AllElements to Actual Matfile
the above code works fine but it takes too much time especially when the size of structure is big. Please help me how to reduce time or remove element by using matfile handler, thanks.
  댓글 수: 3
Abdurrehman
Abdurrehman 2018년 7월 27일
MatfileHandler = matfile('filename.mat','Writable',true);
My Structure is 36x1 array with 12 fields consisting of cell and double data types
Abdurrehman
Abdurrehman 2018년 7월 28일
Precisely speaking I had to say matfile object

댓글을 달려면 로그인하십시오.

답변 (1개)

Guillaume
Guillaume 2018년 7월 27일
As documented in the limitations of matfile, it does not let you index into the fields of a structure. Therefore the only way is to do what you have done: load the whole structure, edit the structure and write it back.

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by