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

基本的な使用法と例をご覧ください。ターミナルでの表示を制御するように聞こえるいくつかの機能が言及されています。

  • struct_levels_to_print
  • print_struct_array_contents

これらの2つの機能は、あなたが望むことをしているように聞こえます。私は両方を試しましたが、2番目のものを動作させることができませんでした。最初の関数は、次のように端末出力を変更しました。

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は、2012年11月現在の最新バージョンのようです。

于 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では、バージョン4.0.0が「x86_64-pc-linux-gnu」用に構成されています。(Ubuntu16.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 に答える