在matlab中加载变量
我想在具有不同图像名的循环中加载变量。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定你的变量到底是什么。字符串数组?
PS您可能还需要类似的东西:
适当地连接文件名。
Not sure exactly what your variable is. An array of strings?
P.S. you may also need something like:
to concatenate the filename appropriately.