Need help with class design: data types, etc
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
I am about to begin my first VB.NET project, and I am finding out data design is the hardest part (well, so far, since it's the first part...) I need to fit multiple datasets with least squares method, etc... So I was going to have datatype for each point (combining X, Y, Z1, Z2, ... all as double) the points need to be grouped together into a set, adding some other data (name, RMS of fit, rejection criteria, etc) I need the ability to add/remove points easily here The sets should be organized somehow for display / adding / removing of sets. What data types should I use for all of these (all have to be serializable, I used collections and arrays in vb6-- big mistake)