1. 程式人生 > >【MATLAB】MATLAB 結構體

【MATLAB】MATLAB 結構體

Matlab 中結構體, 使用很方便, 直接用或者先用 struct 關鍵字建立結構都可以.
不用宣告, 不用初始化, 直接用.表明這是一個結構體即可.

% a complex number
x.real = 0;
x.imag = 0;

使用 struct 關鍵字

% grammar 
% s = sturct('field1',values1,'field2',values2,…);
% example
s = struct('type',{'big','little'},'color',{'blue','red'},'x',{3,4}) 

更復雜的, 看 Ref

Ref