Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Commit 8806e89

Browse files
committed
Fixing integration of #269
1 parent c341392 commit 8806e89

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Sources/Accord.Statistics/Models/Regression/Linear/MultipleLinearRegression.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,9 @@ public virtual double Regress(double[][] inputs, double[] outputs, bool robust)
234234
throw new ArgumentException("Number of input and output samples does not match", "outputs");
235235

236236
double[,] design;
237+
#pragma warning disable 612, 618
237238
return regress(inputs, outputs, out design, robust);
239+
#pragma warning restore 612, 618
238240
}
239241

240242
/// <summary>

0 commit comments

Comments
 (0)