在MATLAB中,我有一个InputStream,我想从中读取数据。
不幸的是我不能打电话给
read( byte [], int, int )
InputStream
的函数,因为MATLAB没有通过引用传递参数。
BTW:拨打" int read()
"函数,只读取一个字节,但无效。
背景:我想在运行时使用解压缩来读取多GB BZIP2文件(使用Apache Commons Compress包)。
在我看来,MATLAB无法调用" read
"是非常愚蠢的。 InputStreams
的功能......
答案 0 :(得分:-1)
根据定义,这不是答案,但这是一个相关的问题
Read the data from TXT file inside Zip File without extracting the contents in Matlab