gpt4 book ai didi

matlab - 有没有办法在 Matlab 中识别空行?

转载 作者:太空宇宙 更新时间:2023-11-03 19:45:12 25 4
gpt4 key购买 nike

在 Matlab 中扫描文本文件时,有没有办法识别空行?我想根据文本之间的空行来解析文件。这可能吗?

最佳答案

是的,这是可能的。 MATLAB 片段看起来像:

fid = fopen('reader.m');

newline = sprintf('\r\n');
line = fgets(fid);
while ischar(line)
if strcmp(newline, line)
disp('Empty line');
else
disp('Non-empty line');
end
line = fgets(fid);
end

关于matlab - 有没有办法在 Matlab 中识别空行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3057512/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com