MATLAB中如何在给结构数组赋值(Structure)时避免使用循环?

2024-11-29 17:09:00
推荐回答(3个)
回答1:

使用deal函数匹配输入输出:

Ex = num2cell(Example);
[S(1:5).example] = deal(Ex{1:5});

回答2:

S(1:5).example = Example(1,1:5)你再试试

回答3:

不好意思,回答有问题!