读取 MATLAB 中特定目录中的某些文件?
如何从 MATLAB 中的某个目录读取具有特定扩展名的所有文件,并获取每个文件的名称(不带扩展名)并将其存储在变量中?
How do I read all the files with a specific extension from a certain directory in MATLAB, and take the name of each file (without its extension) and store it in a variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的事情:
Something like this:
让我进一步简化答案:
Let me simplify the answer even more:
使用 dir 命令获取目录内容,使用 fileparts 函数去除扩展名。
Use the
dir
command to get the directory contents, and thefileparts
function to strip the extension.