Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2XB3FinalProject
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Schankula
2XB3FinalProject
Commits
944fe14b
Commit
944fe14b
authored
6 years ago
by
Christopher Schankula
Browse files
Options
Downloads
Patches
Plain Diff
a few edits to RecordCluster javadoc
parent
3ba1631a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/graph/RecordCluster.java
+17
-3
17 additions, 3 deletions
src/graph/RecordCluster.java
with
17 additions
and
3 deletions
src/graph/RecordCluster.java
+
17
−
3
View file @
944fe14b
...
...
@@ -4,10 +4,24 @@ import java.util.ArrayList;
import
data.Record
;
/**
* A cluster of records clustered by the Cluster class.
* @author TrawlStars, Inc.
*
*/
public
class
RecordCluster
{
private
ArrayList
<
Record
>
records
;
//list of records
private
Point
centroid
;
//Middle point of square in question
private
int
individualCount
;
//Number of data points in cluster
/**
* List of records in cluster.
*/
private
ArrayList
<
Record
>
records
;
/**
* Average 2D position of records in cluster.
*/
private
Point
centroid
;
/**
* Total number of inidividual fish in the cluster.
*/
private
int
individualCount
;
/**
* Constructor for a cluster of fish data points
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment