Its this one UOC_PROTOTYPE_matlab_script. I downloaded it from the other forum post though not sure which one.
Anyway, this is the template:
function disp(x)
if (strcmp(class(x), 'logical') == 1)
printf('%6d', x)
printf('\n')
elseif (strcmp(class(x), 'double') == 1)
if (int64(x) == x) % Integral?
printf('%6d', x)
printf('\n')
else
printf('%10.4f', x)
printf('\n')
end
elseif (strcmp(class(x), 'char') == 1)
printf('%s\n', x)
else
printf('Unexpected data type passed to disp')
end
end
{% for TEST in TESTCASES %}
{{ TEST.testcode }};
{{ STUDENT_ANSWER }}
clear;
{% if not loop.last %}
disp('#<ab@17943918#@>#');
{% endif %}
{% endfor %}
quit();