MATLAB 迭代保存到结构体
MATLAB 迭代保存到结构体 1) 运行函数 2)每个输出[向量A,向量B],它们是不同大小的向量,应该保存在结构中的每次迭代i中
但是这个语法不起作用:
for i=1:n
[vectorA, vectorB] = anyfunction(i)
myStruct(i).vectorA = {[vectorA]};
myStruct(i).vectorB = {[vectorB]};
end
MATLAB save iteratively to struct
1) Running a function
2) Each output [vectorA, vectorB], which are vectors of different sizes, should be save in each iteration i in the struct
But this sytax doesn´t work:
for i=1:n
[vectorA, vectorB] = anyfunction(i)
myStruct(i).vectorA = {[vectorA]};
myStruct(i).vectorB = {[vectorB]};
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单地:
Simply: