2-dimensional data visualization
in
Share your Work
•
2 years ago
Based on XOR neural network visualization here I have created a class that is capable to visualize 2-dimensional array of data.
Basic class is called cVisualize. It has 2 constructors:
public cVisualize(float [][] _data, int _dim);
public cVisualize(float [][] _data, int _dim, String _title);
Parameters:
_data - array of data to be visualized
_dim - dimension of the cube in which data are plotted
_title - title of the applet
More, you can find here.