<< plot3dot Visualization functions plot_weight >>

A Neural Network Module for Scilab >> Visualization functions > plot_2group

plot_2group

Visulized 2 groups of data, with the data being tagges as 0 and 1 respectively

Calling Sequence

plot_2group(p,t)

Parameters

p :

2-D data, with x and y, each column build up 1 set of data

t :

Target group, strictly 0 and 1 for the plot function to plot correctly

Description

This is the function to Visulized 2 groups of data

Examples

x = rand(2,10);
x(:,1:5) = x(:,1:5) + 1;
t = [0 0 0 0 0 1 1 1 1 1];
plot_2group(x,t)

Authors


Report an issue
<< plot3dot Visualization functions plot_weight >>