2

I need to show diagrams of some networks, but the problem is that close all doesn't close these windows, so I have several windows to close manually after a few runs.

[x,t] = house_dataset;
net1 = newff(x, t, [5, 3]);
view(net1);
net2 = newff(x, t, [7, 5]);
view(net2);
close all;

However if I keep the handle of window, close function will close it:

net3 = newff(x, t, [9, 7]);
h = view(net3);
close(h);

But it's not easy for me to collect all those handles. How can I find all those handles programmatically?

saastn
  • 5,717
  • 8
  • 47
  • 78

1 Answers1

3

You can use the command:

nnet.guis.closeAllViews()

This will close all the diagrams for the networks.

adulai
  • 31
  • 2