gpt4 book ai didi

octave - Xubuntu 14.04 上的 QtOctave - 预兆未显示 - 错误 : 'create_set' undefined

转载 作者:行者123 更新时间:2023-12-04 19:02:55 25 4
gpt4 key购买 nike

m having a hard time using QTOctave on Xubuntu.
I
我试图显示一个波特图,但我不断从 Octave 终端收到错误消息:

 **warning: dcgain: unstable system; dimensions: nc=0, nz=2, mm=1, pp=1
error: 'create_set' undefined near line 141 column 16
error: called from:
error: /home/octave/control-1.0.11/__bodquist__.m at line 141, colum
n 14
error: /home/octave/control-1.0.11/bode.m at line 134, column 12
error: /home/M/Regelungstechnik/bodeTest.m at line 7, column 1
>>>**

而且真的不是什么难的M文件:
tau=1/5
z=1;
n=[tau,1, 0]

G=tf(z,n)

bode(G)

我在我的 Xubuntu 14.04 桌面上运行它,并且安装了以下 Octave 软件包:
>>> pkg list
Package Name | Version | Installation directory
-------------------+---------+-----------------------
control *| 1.0.11 | /home/octave/control-1.0.11
fpl *| 1.2.0 | /home/octave/fpl-1.2.0
gnuplot *| 1.0.1 | /home/octave/gnuplot-1.0.1
ident *| 1.0.7 | /home/octave/ident-1.0.7
informationtheory *| 0.1.8 | /home/aronheck/octave/informationtheory-0.1.8
integration *| 1.0.7 | /home/octave/integration-1.0.7
missing-functions *| 1.0.2 | /home/octave/missing-functions-1.0.2
odebvp *| 1.0.6 | /home/octave/odebvp-1.0.6
plot *| 1.0.8 | /home/octave/plot-1.0.8
simp *| 1.1.0 | /home/octave/simp-1.1.0

我希望你能帮助我解决我的问题。

最佳答案

为什么它不起作用可能有两件事:

  • 当您只运行 Octave(即没有 QtOctave)时,您是否会遇到同样的错误? QtOctave 在多年前就被废弃了,众所周知,它不能很好地与较新的 Octave 版本一起使用。
  • 您的控制包版本非常非常旧。您似乎安装了 1.0.11 版本,但最新版本是 2.8.0。我检查了 14.04 的 ubuntu 存储库,它们的版本为 2.6.2。

  • 使用控制版本 2.8.0 运行 Octave 3.8.2,您的代码对我来说工作正常:
    octave-cli-3.8.2:1> pkg load control
    octave-cli-3.8.2:2> tau=1/5
    tau = 0.20000
    octave-cli-3.8.2:3> z=1;
    octave-cli-3.8.2:4> n=[tau,1, 0]
    n =

    0.20000 1.00000 0.00000

    octave-cli-3.8.2:5> G=tf(z,n)

    Transfer function 'G' from input 'u1' to output ...

    1
    y1: -----------
    0.2 s^2 + s

    Continuous-time model.
    octave-cli-3.8.2:6> bode(G)

    enter image description here

    关于octave - Xubuntu 14.04 上的 QtOctave - 预兆未显示 - 错误 : 'create_set' undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29603665/

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