view

View shallow neural network

Syntax

view(net)

Description

view(net) opens a window that shows your shallow neural network (specified in net) as a graphical diagram.

Tip

To visualize deep learning networks, see Deep Network Designer.

Example

View Neural Network

This example shows how to view the diagram of a pattern recognition network.

[x,t] = iris_dataset;
net = patternnet;
net = configure(net,x,t);
view(net)

Introduced in R2008a