从文本文件中读取字符数组

发布于 2024-11-08 11:30:52 字数 430 浏览 1 评论 0原文

我想从文本文件中读取并处理文本(压缩增量)。 我正在 MATLAB 中使用 textread 函数。我的问题是它没有正确读取空格。

这是代码:

w=textread('in.txt','%c','delimiter','\n','whitespace','');

e=double(w);
[z,x]=size(e);
r=vec2mat(e,ceil(z/100));
r=uint8(r);
imwrite(r,'jocop.gif')
[t,y]=norm2lzw(uint8(e),z);
u=vec2mat(t,ceil(z/100));
imwrite(double(u),'compro.gif')

您会注意到我使用 '%c' 来获取字符数组而不是元胞数组,但我仍然无法获取空格。有什么建议吗?

I want to read from a text file and process the text (compress incrept).
I am using the textread function in MATLAB. My problem is that it is not reading the white spaces correctly.

Here is the code:

w=textread('in.txt','%c','delimiter','\n','whitespace','');

e=double(w);
[z,x]=size(e);
r=vec2mat(e,ceil(z/100));
r=uint8(r);
imwrite(r,'jocop.gif')
[t,y]=norm2lzw(uint8(e),z);
u=vec2mat(t,ceil(z/100));
imwrite(double(u),'compro.gif')

You will notice that I am using '%c' in order to get a char array and not a cell array, but I still cannot get the whitespaces. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逐鹿 2024-11-15 11:30:52

您的 '' 不是空格 - 它是一个空字符(引号之间没有空格)。

w=textread('in.txt','%c','delimiter','\n','whitespace',' ');

是正确的方法。

Your '' is not a white space - it's an empty character (there's no space between the quotes).

w=textread('in.txt','%c','delimiter','\n','whitespace',' ');

is the proper way to do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文