倍频程在倍频程包中找不到函数(流线)



我在Ubuntu 20.04上使用Octave 5.2。复制粘贴示例

[x, y] = meshgrid (-1.5:0.2:2, -1:0.2:2);
u = - x / 4 - y;
v = x - y / 4;
streamline (x, y, u, v, 1.7, 1.5);

在m文件中,并启动脚本,给出

warning: the 'streamline' function is not yet implemented in Octave
Please read <https://www.octave.org/missing.html> to learn how you can
contribute missing functionality.
error: 'streamline' undefined near line 4 column 1
error: called from
quiverexample at line 4 column 1

但我认为它应该出现在5.2版本中(流线型于2019年11月23日实施,5.2版本于2020年1月31日构建(。我应该从源代码构建Octave还是有其他方法来解决这个问题?

据我所知,streamline从v6开始被添加到八度音阶中:https://www.gnu.org/software/octave/NEWS-6.1.html#alphabetical-新功能列表-八分之一加六

您可以简单地尝试从开发源下载相关的m文件。或者,从源代码下载最新的倍频程并进行编译,这实际上是一个非常简单的过程。(如果你遇到麻烦,可以在这里询问(

相关内容

  • 没有找到相关文章

最新更新