gpt4 book ai didi

matlab - Octave pdist(成对距离)

转载 作者:行者123 更新时间:2023-12-03 05:29:26 25 4
gpt4 key购买 nike

octave 文档说 pdist 存在,但我无法在 ubuntu 12.04 上安装的版本中使用它。

Octave 版本:

GNU Octave, version 3.6.2
Copyright (C) 2012 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. For details, type `warranty'.

Octave was configured for "x86_64-pc-linux-gnu"

我需要安装任何软件包吗?

响应后:我尝试安装统计包:

octave:1> pkg install -forge statistics
error: the following dependencies where unsatisfied:
statistics needs io >= 1.0.18

最佳答案

是的。您需要安装统计包。如果你查看函数列表 here ,可以看到函数所属的包。

编辑:该错误消息不言而喻。统计包依赖于io包。只需安装它,就像安装统计包一样。

pkg install -forge io

问题是 io 包本身可能依赖于其他包,因此为什么建议使用包管理器来处理这类东西(Octave 的 pkg 还不能自动解决依赖关系尽管这方面的一些工作正在进行中)。由于您使用的是 Ubuntu,只要您不是自己构建 Octave,只需从其存储库安装该版本即可:

apt-get install octave-statistics

另一种方法是告诉pkg忽略依赖项并强制安装(如果统计包的某些部分稍后无法正常工作,请不要感到惊讶:

pkg install -forge -nodeps statistics

关于matlab - Octave pdist(成对距离),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18862354/

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