gettimesteplist3d
Returns a list of time steps in a file using the 3D CAE Readers. By default, the first subcase is used.
Syntax
gettimesteplist3d(filename)
gettimesteplist3d(filename, subcase)
R = gettimesteplist3d(...)
Inputs
- filename
- Path of file to be read.
- subcase
- Subcase name or index in the file to be read.
Outputs
- R
- Cell array of time steps.
Example
Basic gettimesteplist3d example subcase index
gettimesteplist3d('tutorials/Comp-plate-1LC.h3d',1)
ans =
{
[1,1] 0.000000
}
Basic gettimesteplist3d example subcase name
gettimesteplist3d('tutorials/Comp-plate-1LC.h3d','Subcase 1 (LC-Tens)')
ans =
{
[1,1] 0.000000
}