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

  • SEARCH
  • Home
  • 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 9163717
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:30:44+00:00 2026-06-17T14:30:44+00:00

I use a structure called test with the following layout (result of whos test,

  • 0

I use a structure called test with the following “layout” (result of whos test, test)

  Name      Size              Bytes  Class     Attributes
  test      1x1             8449048  struct              
test = 
     timestamp: {[7.3525e+05]  [7.3525e+05]  [7.3525e+05]}
    timeseries: {[44000x8 double]  [44000x8 double]  [44000x8 double]}

For speed issues, I want to preallocate that with zeros.
I found some ways, which result in other “layouts”:

test2=struct('timestamp',cell(1,3),'timeseries',cell(1,3));
test3=struct('timestamp',{0,0,0},'timeseries',{zeros(44000,8),zeros(44000,8),zeros(44000,8)});
tempstamp={0,0,0};
tempseries={zeros(44000,8),zeros(44000,8),zeros(44000,8)};
test4=struct('timestamp',tempstamp,'timeseries',tempseries);
whos test2 test3 test4,test2,test3,test4

resulting in

  Name       Size              Bytes  Class     Attributes
  test2      1x3                 176  struct              
  test3      1x3             8448824  struct              
  test4      1x3             8448824  struct              
test2 = 
1x3 struct array with fields:
    timestamp
    timeseries
test3 = 
1x3 struct array with fields:
    timestamp
    timeseries
test4 = 
1x3 struct array with fields:
    timestamp
    timeseries

When issuing the commands test5.timestamp=tempstamp;test5.timeseries=tempseries;whos test5,test5 one gets

 Name       Size              Bytes  Class     Attributes
  test5      1x1             8449048  struct              
test5 = 
     timestamp: {[0]  [0]  [0]}
    timeseries: {[44000x8 double]  [44000x8 double]  [44000x8 double]}

Thus reproducing the “layout” in test. This is strange, isn’t it?
Further using test2.timestamp{2}=now is not working as with test3and test4.
Okay, this is described in the documentation help struct, but how can I preallocate such 1x1 struct like test or test5 within one line? Best without those temp* variables.

  • 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-17T14:30:46+00:00Added an answer on June 17, 2026 at 2:30 pm

    Using struct with cells to init a field with cell requires depth-2 cell:

    test=struct('timestamp',{cell(1,3)},'timeseries',{cell(1,3)});
    

    or

    test3 = struct( 'timestamp', { {0,0,0}},...
                    'timeseries',{ {zeros(44000,8),zeros(44000,8),zeros(44000,8)} });
    

    For reference see struct doc the example regarding “Fields that Contain Cell Arrays”.

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

Sidebar

Related Questions

I have a Mongo collection called documents which has the following structure: { name:
I have a mysql table called test, the structure code is given below CREATE
Consider the following class structure: public class Foo<T> { public virtual void DoSomething() {
I have a table called tblAssetsInUse with the following structure: intPK intAssetID datCheckedOut datCheckedIn
What is the following structure called in Objective C, CG_INLINE CGRect CGRectMake(CGFloat x, CGFloat
I'm trying to use the Rect structure from System.Windows in MonoDevelop, but I can't
In my open-source plain C code I use this simple structure to read and
A data structure that I use commonly in multi-threaded applications is a ConcurrentHashMap where
I want to use a C++ map structure, such as map<vector<DFSCode>, vector<PDB>> candidate ,
I use Tomcat7. The structure of my project is : as1.jsp as2.jsp The content

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.