getfilteredtypelist
Returns a list of data types in a file, excludes time.
Attention: Valid only with Altair CAE Readers and Writers Extension.
Syntax
R = getfilteredtypelist(filename)
R = getfilteredtypelist(filename, subcase)
Inputs
- filename
- Path of file to be read.
- subcase
- Subcase name or index in the file to be read.
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
}