Matlab: Display Vectors side by side in a structure -
how can display (in variable viewer) 2 vectors in structure side-by-side in matrix? shows me this:
edit: how should look:
this want achieve, converting table struct:
i.a(1:150,1)=[0]; i.b(1:150,1)=[0]; a=table(i.a,i.b) b=table2struct(a)
the variable viewer shows contents of fields "side side" when it's structure-array, constructed following commands:
a.a = 0; a.b = 0; b = repmat(a,[1 100]);
Comments
Post a Comment