pattern_file #60
Replies: 3 comments 5 replies
-
老师您好,一次写入10个有序整数和一次写入一个数组大小为10的有序整数数组,这两种写入二进制文件的方法,我的理解是,写入的内容相同。因为整数和元素为整数的数组,数据类型一致。在二进制的形式下,内容是一样的。影响二进制内容的只有字节顺序,如果字节顺序一致,内容也应该是一致的。 |
Beta Was this translation helpful? Give feedback.
2 replies
-
二进制写入中,直接写入整个数组“0~9”,如果读取总数依旧为10,则会显示“10,0,1..,8”,首位显示的将是数组的元素个数,只有将读取总数设为元素数量+1,并删除首位元素,才能得到“0,1,2..,8,9”的正常结果。 |
Beta Was this translation helpful? Give feedback.
1 reply
-
老师您好,我在做示波器控制程序的时候,遇到示波器传回的是PNG文件的16进制或RAW,LabVIEW支持这种将PNG数据流转换为PNG图片显示在前面板的操作方式吗? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
文件读写
https://labview.qizhen.xyz/pattern_file
Beta Was this translation helpful? Give feedback.
All reactions