Step 1:
Create the nework and set its name to "Wine Classification Network"
clear all;
clc;
close all;
net=feedforwardnet(10);
% One hidden layer with 10 nodes should be enough for this project.
You can actually just write net=feedforwardnet since by default
it will have one hidden layer with 10 nodes.
net.name = 'Wine Classification';