フィルターのクリア

I have a structure which includes some structures within itself. I want to get all the values in the inner structure and create a single column vector. How can I do that?

1 回表示 (過去 30 日間)
for i = 1:120
A = [];
for j = 1:
A(j) = data(i).I;
end
end
I do not know how to define "j". "I" is a structure within "data". "data" includes 120 "I"s and each "I" includes between 720 to 760 values. I want all the "I" values in a vector.

回答 (1 件)

dpb
dpb 2022 年 10 月 8 日
V=vertcat(data(:).I);

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by