Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のセル配列があります。
res{1}.nft.x=1; res{2}.nft.x=2; res{3}.nft.x=3;
この場合nft.x、値の配列を簡単に取得するにはどうすればよいですか?[1 2 3]
nft.x
[1 2 3]
ありがとう!
使用するcellfun
cellfun
>> cellfun( @(x) x.nft.x, res )