Replies

darksammo
21 Jan 2021, 08:44

RE:

firemyst said:

From the code you provided above, you need to do two things:

 

1) remove #endregion as there's no corresponding #region tag

2) Change the line

private PRC newprc;

 to

private PolynomialRegressionChannels newprc;

because there is no "PRC" object type defined in your code.

Hi Firemyst thanks for the reply

i do it and get this error

Error CS0246: The type or namespace name 'PolynomialRegressionChannels' could not be found; probably missing a using directive or assembly reference


@darksammo