Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ class ClusterLines final
bool operator==(const ClusterLines&) const;

protected:
std::array<float, 6> mAMatrix; // AX=B
std::array<float, 3> mBMatrix; // AX=B
std::vector<int> mLabels; // labels
std::array<float, 9> mWeightMatrix; // weight matrix
std::array<float, 3> mVertex; // cluster centroid position
std::array<float, 6> mRMS2; // symmetric matrix: diagonal is RMS2
float mAvgDistance2; // substitute for chi2
std::array<float, 6> mAMatrix; // AX=B
std::array<float, 3> mBMatrix; // AX=B
std::vector<int> mLabels; // labels
std::array<float, 9> mWeightMatrix = {0.f}; // weight matrix
std::array<float, 3> mVertex = {0.f}; // cluster centroid position
std::array<float, 6> mRMS2 = {0.f}; // symmetric matrix: diagonal is RMS2
float mAvgDistance2 = 0.f; // substitute for chi2
};

} // namespace its
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.