Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix to Gaussian.cpp #56

Merged
merged 5 commits into from Apr 18, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/libshogun/distributions/Gaussian.cpp
Expand Up @@ -25,7 +25,8 @@ m_mean_length(0)
}

CGaussian::CGaussian(float64_t* mean, int32_t mean_length,
float64_t* cov, int32_t cov_rows, int32_t cov_cols) : CDistribution()
float64_t* cov, int32_t cov_rows, int32_t cov_cols) : CDistribution(),
m_cov_inverse(NULL)
{
ASSERT(mean_length == cov_rows);
ASSERT(cov_rows == cov_cols);
Expand Down