如何在 Gnuplot 中跳过二进制文件开头的某些字节?

发布于 2024-09-15 16:26:00 字数 373 浏览 5 评论 0原文

假设我有一个二进制文件,其格式如下:4*sizeof(double)、4*sizeof(size_t)、(Ny*Nx)*dizeof(double)。

前 4 个双精度值和 4 个 size_ts 是有关文件的元信息。其余的是我想用 gnuplot 绘制的数据。

现在我必须使用以下命令将文件转换为另一个没有标题的文件:

plot "convertedfile.data" binary format='%double' array=(Ny, Nx) u 1 w image

Q: 有没有办法告诉 gnuplot 忽略起始 N 字节二进制文件,然后将其余部分绘制成矩阵?

Say I have a binary file which has the following format: 4*sizeof(double), 4*sizeof(size_t), (Ny*Nx)*dizeof(double).

The first 4 doubles and the 4 size_ts are metainformation about the file. The rest is data I want to plot with gnuplot.

Right now I have to convert the file to another one without the header to plot using the command:

plot "convertedfile.data" binary format='%double' array=(Ny, Nx) u 1 w image

Q: Is there any way to tell gnuplot to ignore the starting N bytes of the binary file and then plot the rest as if its a matrix?

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

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

发布评论

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

评论(2

苍景流年 2024-09-22 16:26:00

您可以在开头跳过一些字节,使用 skip

plot "convertedfile.data" binary skip=16 format='%double' array=(Ny, Nx) u 1 w image

将跳过文件的前 16 个字节。

You can skip some bytes at the beginning with skip

plot "convertedfile.data" binary skip=16 format='%double' array=(Ny, Nx) u 1 w image

will skip the first 16 bytes of the file.

于我来说 2024-09-22 16:26:00

最简单的解决方案可能是编写一个小型 C 程序来剥离元信息并将剩余数据写入新文件。

The simplest solution is probably to write a small C program to strip off the metainfomation and write the remaining data to a new file.

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