如何在 MATLAB 中读取该文件?
我有一个名为 data.dat
的文件,其中包含以下内容:
我的名字是埃利亚斯 123
这是一本书 123.450
我父亲的名字-2.34e+05
我想将此文件加载到 MATLAB 中并获取以下数据作为输出:
a = 123
b = 123.450
c = -2.34e+05
name = 'elyas'
但我不知道该怎么做。有什么建议吗?
I have a file named data.dat
with the following contents:
my name is elyas 123
this is a book 123.450
my father name -2.34e+05
I want load this file into MATLAB and get the following data as output:
a = 123
b = 123.450
c = -2.34e+05
name = 'elyas'
But I don't know how to do this. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一种使用 TEXTSCAN 进行阅读的方法3 行中的每一行:
Here's one way to do it using TEXTSCAN to read each of the 3 lines:
您可以尝试textscan。
You could try textscan.