小编Xer*_*ith的帖子

在 .octaverc 中设置默认绘图线宽

我从 Octave 开始。我在 Debian 上使用 Octave 4.2.0(从源代码编译)。

我发现使用 qt 或 fltk Graphics_toolkit 时,默认线宽为 0.5。我想更改 .octaverc 文件中的默认线宽。

我尝试将以下内容添加到我的 .octaverc (单独)中,但它们都会导致错误

linewidth:def.1.5000
set(gca (), "defaultlinewidth", "1.5")
Run Code Online (Sandbox Code Playgroud)

如何通过八角文件更改绘图的默认线宽?

plot octave

3
推荐指数
1
解决办法
2843
查看次数

Breadth first search in LISP

I have a representation of a tree using lists. For example:

(1 ((2 (3)) (3 (2)))) (2 ((1 (3)) (3 (1)))) (3 ((1 (2)) (2 (1)))))`
Run Code Online (Sandbox Code Playgroud)

Now I need to traverse it level by level while maintaining the hierarchy tree. For instance:

  1. Traversing root node (1)
  2. Traversing depth 1 (1 2) (1 3) (2 1) (3 1) (3 1) (3 2)
  3. Traversing depth 2 (1 2 3) (1 3 2) (2 1 3) (2 3 1) (3 1 2) (3 …

lisp common-lisp

-1
推荐指数
1
解决办法
379
查看次数

标签 统计

common-lisp ×1

lisp ×1

octave ×1

plot ×1