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.
我正在使用 Matlab 进行分段分类。我得到一个向量中的类,我想把这些类放在原始索引中。这些索引在一个结构中。
我想在不循环的情况下做到这一点。
索引位于嵌套结构中,例如
d.S(1) = ids: [845x1 double]
做我想要的循环是:
for i=1:1:N imC([d.S(i).ids]) = class(i) end