Hello all,
Is there a smart way to read elements with different time channels? In my CAE result file, there are elements with no time steps associated with it, whereas others have several time steps. I'd like to read those that have data but using this approach:
testvar = gettimesteplist(caefile1,1,resulttype,i,component); if min(testvar) > 0 %Check if there are 0 time steps for that specific element listelements = [listelements i]; %Append element to list of elements of interest end
is very inefficient. Does anyone have a suggestion of what's best to do?
Thanks,
Roberta