|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
如下代码是Java写的么?
UncertaintyArray = [UncertaintyArray, (round(100*(Uncertainty_Bound/FittedInsertionLossCurve(index_A)), 1))]; ###这一行是什么意思,数组=[数字,一位小数],这个是出来一个数组么?
###下面的private 定义的是函数么?
private double[] CalculatePhysicalFitUncertainty(double[] frequencyVector, double[] lossPerInchVector, double[] fitLossPerInchVector, double[] selecteFreq, int errorNeighborhoodWidth, int sigmaCount)
{
double[] array = new double[fitLossPerInchVector.Length]; ###这个.Length结果是个什么属性的东西,我觉得是个整形数字
for (int i = 0; i < fitLossPerInchVector.Length; i++)
{
array[i] = lossPerInchVector[i] - fitLossPerInchVector[i];
}
double[] array2 = new double[fitLossPerInchVector.Length]; ###new double[fitLossPerInchVector.Length],这我感觉是定义以恶双精度类型数字,但是为什么又给了一个双精度类型数组?
double[] array3 = new double[fitLossPerInchVector.Length];
double num = frequencyVector[1] - frequencyVector[0];
int num2 = (int)Math.Round((double)errorNeighborhoodWidth / num);
int num3 = 0;
int num4 = num3 + num2;
for (int j = 0; j < frequencyVector.Length; j++)
{
num3 = j;
num4 = num3 + num2;
bool flag = num4 > frequencyVector.Length;
if (flag)
{
num4 = frequencyVector.Length;
}
double[] array4 = new double[num4 - num3];
for (int k = num3; k < num4; k++)
{
array4[k - num3] = array[k];
}
double num5 = Math.Abs(array4.Average()) + (double)sigmaCount * array4.StandardDeviation();
array2[j] = fitLossPerInchVector[j];
array3[j] = Math.Round(100.0 * (num5 / fitLossPerInchVector[j]), 1);
}
return array3;
}
|
|