From: Jim N. on
Hi: I created a decision tree with @classregtree and want to plot the tree result of view(). Is that somehow possible? The standard export functions are not available in the window.
From: Donn Shull on
"Jim N." <spezial(a)nurfuerspam.de> wrote in message <hl91dt$hmm$1(a)fred.mathworks.com>...
> Hi: I created a decision tree with @classregtree and want to plot the tree result of view(). Is that somehow possible? The standard export functions are not available in the window.

Probably the fastest way to do this is to edit the view.m file in the @classregtree directory and search for the adjustmenu function. then comment out the line that deletes items from the file menu.

then

clear classes
rehash toolbox
% recreate the tree view

and you should have all the menu options available on your tree views.

Hope this helps

Donn