Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8947397
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:45:00+00:00 2026-06-15T12:45:00+00:00

I have a very large structure array in matlab. Suppose, for argument’s sake, to

  • 0

I have a very large structure array in matlab. Suppose, for argument’s sake, to simplify the situation, I have something like:

structure(1).name = 'a';
structure(2).name = 'b';
structure(3).name = 'c';
structure(1).returns = 1;
structure(2).returns = 2;
structure(3).returns = 3;

Now suppose I have some condition that comes along and makes me want to delete everything from structure(2) (any and all entries in my structure array). What is a good way to do that?

My solution has been to just set the corresponding fields to [] (e.g. structure(1).name = [];), but that doesn’t remove them, that only makes them empty. How do I actually remove them completely from the structure array? Is there a way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T12:45:01+00:00Added an answer on June 15, 2026 at 12:45 pm

    simple if you want to delete element at index i do the following:

    i = 3
    structure(i) = [];
    

    And that will remove element at index 3.

    Example:

    st.name = 'text';
    st.id = 1524;
    arrayOfSt = [st st st st st];
    

    Now:

    arrayOfSt = 
    
        1x5 struct array with fields:
            name
            id
    

    If we execute:

    arrayOfSt(2) = [];
    

    then the new value of the array of structers will be:

    arrayOfSt = 
    
        1x4 struct array with fields:
            name
            id
    

    Try it !

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very large XML file which has like 40000 data, and when
I have a very large list Suppose I do that (yeah, I know the
I have a static large array-of-arrays, witch represents tree structure with about ~100k nodes,
I have a structure (class) that keeps very large number of numbers (either float,
I have a very large point cloud (> 100000 points) that I'd like to
Say I have a very large dictionary / associative array and I want to
I have few very large(10GB) xml files, with the following structure. As you can
I have two versions of a very large and complicated directory structure with tens
I have a very large Excel sheet converted from a 6000 page PDF file,
I have a very large UIView approx 3000x3000 in size. In this large view

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.