array<array<double>^>^ independents = {gcnew array<double>{0, 0}, gcnew array<double>{0, 1}};
array<double>^ dependent = gcnew array<double>(10);
LogisticRegressionAnalysis xLra = gcnew LogisticRegressionAnalysis(independents, dependent);
The error message is
error C3673: 'Accord::Statistics::Analysis::LogisticRegressionAnalysis' : class does not have a copy-constructor
Any hint will be greatly appreciated.