cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

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