在matlab中加载变量

发布于 2024-10-27 15:50:32 字数 179 浏览 4 评论 0原文

我想在具有不同图像名的循环中加载变量。

for i=1:length(imagefile) 
      name=imagefile{i}; 
% name=image01% load name  
end

它看起来是变量(名称)而不是(image01),我该怎么做 问候,

I want to load variables in a loop with different imagenames.

for i=1:length(imagefile) 
      name=imagefile{i}; 
% name=image01% load name  
end

it looks variable (name) and not (image01), how should I do it
regards,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

故事与诗 2024-11-03 15:50:32

不确定你的变量到底是什么。字符串数组?

imaefgile = ["image01", "image02"]
for i=1:length(imaefgile)
    load(imaefgile(i))
end

PS您可能还需要类似的东西:

load(strcat("Folder/", imaefgile(i), ".mat"))

适当地连接文件名。

Not sure exactly what your variable is. An array of strings?

imaefgile = ["image01", "image02"]
for i=1:length(imaefgile)
    load(imaefgile(i))
end

P.S. you may also need something like:

load(strcat("Folder/", imaefgile(i), ".mat"))

to concatenate the filename appropriately.

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