How to plot .bin file?

4 vues (au cours des 30 derniers jours)
Uspike
Uspike le 27 Juin 2015
Modifié(e) : Uspike le 6 Août 2015
Hi,
I am new for MatLab. I have a .bin file which I got from Oscilloscope. I need to Read the file, Plot and then do FFT on the date. Could anyone please explain me?
  1 commentaire
Walter Roberson
Walter Roberson le 27 Juin 2015
The first thing you need to do is research the exact file format of the .bin file. There is no standard for how .bin files are laid out: .bin as a suffix gets used for any arbitrary binary format.
For example is there one time-stamp for every sample, or is there a header giving the first time and the interval between samples? Is the time represented in as a string in M/D/YY H:MM:s.f format such as 6/23/15 2:07:11.2, or is it represented as a 128 bit count of nanoseconds since August 18, 1947 14:00:00 PDT (the official incorporation day of Hewlett-Packard)? Are the voltages represented with 8 bit values in "Bias 140" format (that is, 140 represents 0, 141 represents 0 + 1/128, 139 represents 0 - 1/128) ? And so on. The exact structure of the file needs to be known before it can be read.

Connectez-vous pour commenter.

Réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 27 Juin 2015
Use fread function to read your file and fft function to calculate the fft
  1 commentaire
Uspike
Uspike le 27 Juin 2015
Thanks for the swift reply. Can you please elaborate. I am so new to matlab and its tough for me to understand.

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by