gpt4 book ai didi

java - Android import Apache Commons Math - 无法使用正态分布

转载 作者:行者123 更新时间:2023-11-30 01:02:24 25 4
gpt4 key购买 nike

我导入了 Apache Common Math 库以使用正态分布。但它不起作用。错误是包外无法访问。

我无法导入 normalDistributionCDFAlgorithm 库。

public void calc1()
{
if (normDist1.getText().toString().equals(""))
{
//do nothing
}
else
{
double mean = Double.parseDouble(meanTxt.toString());
double standDevi = Double.parseDouble(standDeviTxt.toString());
double userInput = Double.parseDouble(normDistTxt1.toString());
double answer;

NormalDistribution d ;

if (tglbool1)
{
//> greater than
d = new NormalDistribution(mean,standDevi);
answer = d.cumulativeProbability(1000);

}
}

最佳答案

我不知道这个库,但我怀疑您还没有将 jar 添加到您的项目中。为此,您应该:

  1. 将 jar 文件放在模块根目录下的 libs 文件夹中。
  2. 单击"file"->“项目设置”。
  3. 在左侧选择要将库添加到的模块
  4. 在右侧选择选项卡 Dependencies
  5. 在底部按加号并单击文件依赖
  6. 最后选择对应的jar并同步工程

编辑:您还可以执行以下操作:

dependencies {
compile 'org.apache.commons:commons-math3:3.6.1'
}

关于java - Android import Apache Commons Math - 无法使用正态分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39256250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com