matlab神经网络训练完怎么存_如何保存Matlab神经网络工具箱生成的数字

bd96500e110b49cbb3cd949968f18be7.png

In the matlab workspace the output/results can be easily saved. But when I train the network with some data to see the performance of the training (In Neural Network Toolbox), the regression plots along with the histograms and performance plots can not be saved as a figure file.currently i am using snipping tools to capture them.

My Question is how to do that? Is there any options to save those plots(generated in Maltab Neural Network toolbox)?

I would be grateful to have any codes/ answers regarding my inquiry. Many thanks.

I am adding to snapshot of plots which i want to save by commanding codes in matlab.

currently i am using snipping tools but when i put then in word, their property/image quality shrinks.

解决方案

First of all you need to identify the gfx object you want to snap-shoot (its handle). This may come from identifiable properties. Then you'd want to use print to save it to a file; you need to provide the file name, eventually the type; see the help for more details.

For example, if you want to save the figure with the tag 'my.awesome.fig', you may try:

h = findobj('Type', 'figure', 'tag', 'my.awesome.fig');

for k = 1:numel(h)

print(h(k), sprintf('Pic%d.ps',k));

end;

你可能感兴趣的:(matlab神经网络训练完怎么存_如何保存Matlab神经网络工具箱生成的数字)