MATLAB 迭代保存到结构体

发布于 2024-12-17 18:00:56 字数 269 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

べ繥欢鉨o。 2024-12-24 18:00:57

简单地:

n=5;
anyfunction=@(x) eig(magic(x));

for i=1:n
    [vectorA, vectorB] = anyfunction(i);
    myStruct(i).vectorA = vectorA;
    myStruct(i).vectorB = vectorB;
end

myStruct = 

1x5 struct array with fields:
    vectorA
    vectorB

Simply:

n=5;
anyfunction=@(x) eig(magic(x));

for i=1:n
    [vectorA, vectorB] = anyfunction(i);
    myStruct(i).vectorA = vectorA;
    myStruct(i).vectorB = vectorB;
end

myStruct = 

1x5 struct array with fields:
    vectorA
    vectorB
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文