12/09/2019 at 3:19 PM
#8844
Participant
Hi Ningfei,
I tracked the issue down. This is also a Matlab dependency problem. The problem is in ea_delete.m, which makes use of the .folder field in the return value from the dir function.
In the current Matlab 2019b, the entries returned contain the following fields:
name
folder
date
bytes
isdir
datenum
but in R2016a, they contain only:
name
date
bytes
isdir
datenum
This problem demonstrates in ea_create_tpm_darteltemplate, where a loop is made (l.147-194), cleaning using ea_delete on each iteration, and crashing at the end of the first iteration, never reaching the others, such that not all templates get created.
