getfilteredtypelist

Returns a list of data types in a file, excludes time.

Syntax

R = getfilteredtypelist(filename)

R = getfilteredtypelist(filename, subcase)

Inputs

filename
Path of file to be read.
Type: char | string
Dimension: string
subcase
Subcase name or index in the file to be read.
Type: char | string | integer
Dimension: scalar | string

Outputs

R
Cell array of data type names.

Example

Basic getfilteredtypelist example without subcase

R = getfilteredtypelist('Path/To/File/demo.adm')
R = 
{
  [1,1] Adams Results
}

Example

Basic getfilteredtypelist example with subcase

R = getfilteredtypelist('Path/To/File/control_arm_sol111.pch',1)
R = 
{
  [1,1] Displacements
}