About 1,860,000 results
Open links in new tab
  1. struct - Structure array - MATLAB - MathWorks

    A structure array is a data type that groups related data using data containers called fields.

  2. Structures - MATLAB & Simulink - MathWorks

    A structure array is a data type that groups related data using data containers called fields. Each field can contain any type of data. Access data in a structure using dot notation of the form …

  3. Structure Arrays - MATLAB & Simulink - MathWorks

    Each patient record in the array is a structure of class struct. An array of structures is sometimes referred to as a struct array. However, the terms struct array and structure array mean the …

  4. table2struct - Convert table to structure array - MATLAB

    This MATLAB function converts the table or timetable, T, to a structure array, S.

  5. Generate Code for Structure Arrays - MATLAB & Simulink

    This example shows how to write a MATLAB function that uses structure arrays so that it is suitable for code generation.

  6. isstruct - Determine if input is structure array - MATLAB

    This MATLAB function returns logical 1 (true) if A is a MATLAB structure array and logical 0 (false) otherwise.

  7. getfield - Field of structure array - MATLAB - MathWorks

    Jul 19, 2018 · This MATLAB function returns the value in the specified field of the structure S.

  8. matlab::data::StructArray - C++ class to access MATLAB struct …

    Use StructArray objects to work with MATLAB ® struct arrays. To access a field for a single element in the array, use the field name. To create a StructArray object, call createStructArray …

  9. struct2table - Convert structure array to table - MATLAB

    T = struct2table(S,Name,Value) creates a table from a structure array, with additional options specified by one or more Name,Value arguments. For example, you can specify row names to …

  10. Create Structure Arrays from C++ - MATLAB & Simulink

    How to create structure arrays in C++ and pass them to MATLAB, or retrieve structure arrays from MATLAB.