cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
ray3
Level I

Open binary data in JMP?

I was wondering if its possible to read raw binary data into a JMP script variable? (similar to fread() in Matlab)

Currently to analyze some data that is saved in binary format, I run Matlab to pull the data and save it into a *.csv, which I then load into JMP for plotting/statistical analysis. I'd prefer to be able to just run one script rather than jumping from program to program.
1 REPLY 1
XanGregg
Staff

Re: Open binary data in JMP?

Yes -- the answer is blobs. First use Open Text File() with the "blob" argument which will read the entire file into a blob (Binary Large OBject). For there JMP provides a few functions to extracting data from a blob. The most powerful is Blob To Matrix() is the file contains a run to simmilar data (integers or floating point numbers, for instance). Use Blob Peek() to extract a subblob to get the part you want to convert.

Recommended Articles