caereaderoptions
Sets CAE reader options.
Syntax
caereaderoptions(option,value)
Inputs
- option
- Option name. Supported option 'validatetime'. true value of 'validatetime' make sure all time channels are same when readcae option is used.
- value
- Value associated with option.
Example
caereaderoptions 'validatetime' option to false.
%extracts data even though time channels are not same
caereaderoptions('validatetime', false);
readcae('test.h3d',1,4,[],[],[],1);
%error out if time channels are not same across requests and components
caereaderoptions('validatetime', true);
readcae('test.h3d',1,4,[],[],[],1);
Error: time channels does not match in call to function readcae