Matlab读取文本跳过某个字符
时间: 2023-05-19 17:04:02 浏览: 402
MATLAB读取文本格式数据.docx
可以使用textscan函数,其中的delimiter参数可以指定跳过的字符。例如,如果要跳过逗号,可以这样写:
fid = fopen('filename.txt');
C = textscan(fid, '%s', 'Delimiter', ',');
fclose(fid);
这样就可以读取文本文件并跳过逗号了。
阅读全文
MATLAB读取文本格式数据.docx