从文本文件中读取字符数组
我想从文本文件中读取并处理文本(压缩增量)。 我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
''
不是空格 - 它是一个空字符(引号之间没有空格)。是正确的方法。
Your
''
is not a white space - it's an empty character (there's no space between the quotes).is the proper way to do it.