All,
I am currently trying to convert some lines of code from Java to C# using Visual Studio 2013. However the lines below is causing me some issues:
final double testdata[][] = {{patientTemperatureDouble, heartRateDouble, coughInteger, skinInteger}};
result[i] = BayesClassifier.CalculateProbability{testdata[k],category[i]};
Any clarification as to converting the array to a suitable c# format would be greatly appreciated, I have attempted using readonly and sealed but I've had no luck.
Thanks