I'm trying to store these arrays into the matrix
double X[5][3]
so I could classify them with 1 Nearest Neighbour:
double brick_v[3]={ent_brick,en_brick,con_brick};
double metal_v[3]={ent_metal,en_metal,con_metal};
double skin_v[3]={ent_skin,en_skin,con_skin};
double wood_v[3]={ent_wood,en_wood,con_wood};
double grass_v[3]={ent_grass,en_grass,con_grass};
I would be very grateful if someone would show me how you can do this in C++.