MATLAB: Clf reset on invisible figure makes it visible

clf reset invisible figure visible

Hi guys,
i wanna work without display. Thus trying th like:
f1h=figure('visible', 'off');
clf reset
Than the figure pops up. I don't want it. It also makes no sense if i set it to invisible. Any help?
clf alone wont work because the figure is hidden.
Thx 4 your wisdom!

Best Answer

f1h=figure('visible', 'off');
clf(f1h)
Related Question