14

我在 Octave 中有一个包含一些大数组的结构。

我想知道这个结构中字段的名称,而不必查看所有这些大数组。

例如,如果我有:

x.a=1;
x.b=rand(3);
x.c=1;

了解结构的明显方法如下:

octave:12> x
x =

  scalar structure containing the fields:

    a =  1
    b =

       0.7195967   0.9026158   0.8946427   
       0.4647287   0.9561791   0.5932929   
       0.3013618   0.2243270   0.5308220   

    c =  1

在 Matlab 中,这看起来更简洁:

 >> x
 x = 
    a: 1
    b: [3x3 double]
    c: 1

如何在不查看所有这些大数组的情况下查看字段/字段名称?

有没有办法在 Octave 中显示简洁的概述(如 Matlab 的)?

谢谢!

4

3 回答 3

14

您可能想看看Basic Usage & Examples。提到的几个功能听起来像是它们将控制终端中的显示。

  • struct_levels_to_print
  • print_struct_array_contents

这两个功能听起来像是在做你想做的事。我都尝试了,但无法让第二个工作。第一个函数改变了终端输出,如下所示:

octave:1> x.a=1;
octave:2> x.b=rand(3);
octave:3> x.c=1;
octave:4> struct_levels_to_print
ans =  2
octave:5> x
x =
{
  a =  1
  b =

     0.153420   0.587895   0.290646
     0.050167   0.381663   0.330054
     0.026161   0.036876   0.818034

  c =  1
}

octave:6> struct_levels_to_print(0)
octave:7> x
x =
{
  1x1 struct array containing the fields:

    a: 1x1 scalar
    b: 3x3 matrix
    c: 1x1 scalar
}

我正在运行旧版本的 Octave。

octave:8> version
ans = 3.2.4

如果我有机会,我会检查其他功能,print_struct_array_contents看看它是否符合您的要求。Octave 3.6.2看起来是截至 11/2012 的最新版本。

于 2012-11-22T14:51:13.637 回答
7

利用fieldnames ()

octave:33> x.a = 1;
octave:34> x.b = rand(3);
octave:35> x.c = 1;
octave:36> fieldnames (x)
ans = 
{
  [1,1] = a
  [2,1] = b
  [3,1] = c
}

或者您希望它是递归的,请将以下内容添加到您的.octaverc文件中(您可能需要根据自己的喜好进行调整)

function displayfields (x, indent = "")
  if (isempty (indent))
    printf ("%s: ", inputname (1))
  endif
  if (isstruct (x))
    printf ("structure containing the fields:\n");
    indent = [indent "  "];
    nn = fieldnames (x);
    for ii = 1:numel(nn)
      if (isstruct (x.(nn{ii})))
        printf ("%s %s: ", indent, nn{ii});
        displayfields (x.(nn{ii}), indent)
      else
        printf ("%s %s\n", indent, nn{ii})
      endif
    endfor
  else
    display ("not a structure");
  endif
endfunction

然后,您可以通过以下方式使用它:

octave> x.a=1;
octave> x.b=rand(3);
octave> x.c.stuff = {2, 3, 45};
octave> x.c.stuff2 = {"some", "other"};
octave> x.d=1;
octave> displayfields (x)
x: structure containing the fields:
   a
   b
   c: structure containing the fields:
     stuff
     stuff2
   d
于 2012-11-22T16:13:54.437 回答
0

在 Octave 中,为“x86_64-pc-linux-gnu”配置了 4.0.0 版。(Ubuntu 16.04)我在命令行上这样做了:

print_struct_array_contents(true)
sampleFactorList    % example, my nested structure array

输出:(缩短):

sampleFactorList =

  scalar structure containing the fields:

    sampleFactorList =

      1x6 struct array containing the fields:

        var =
        {
          [1,1] =  1
          [1,2] =   
             2   1   3  
        }

        card =
        {
          [1,1] =  3
          [1,2] =
             3   3   3    
        } 

禁用/恢复旧行为

print_struct_array_contents(false)
sampleFactorList
sampleFactorList =

  scalar structure containing the fields:

    sampleFactorList =

      1x6 struct array containing the fields:

        var
        card
        val

我也把它print_struct_array_contents(true)放到了.octaverc文件中。

于 2017-06-20T13:36:13.813 回答