如何在MATLAB中打开文件?

时间:2016-10-09 00:31:33

标签: string matlab file fopen readfile

我确保该文件存在于代码的位置。

text = fopen(string.txt,'r')

错误:

>> Phy_rate_box_plot
Undefined variable "string" or class "string.txt".

Error in Phy_rate_box_plot (line 4)
text = fopen(string.txt,'r')

1 个答案:

答案 0 :(得分:2)

如果您查看fopen documentation,则会看到filename应该是字符串或字符数组。要使string.txt成为字符串,只需将其括在单引号

text = fopen('string.txt','r')