Custom Data Processing: Difference between revisions

From IVS Expert Wiki
Jump to navigation Jump to search
(Created page with "You can import the raw data into other programs without the need to convert or export it. The data is stored in a standard binary format, with one row of data of data for the time stamps and one for each active channel. The data units are raw voltage, as measured. Here is a matlab code snippet to get you started: <code>fid = fopen(filePathAndName,'r'); data = fread(fid, [nChannels+1, inf], 'double')'; fclose(fid);</code> Please [https://www.industrialvibes.com/contac...")
 
No edit summary
Line 8: Line 8:


Please [https://www.industrialvibes.com/contact.html contact] us if you require assistance with custom data processing. Also, we recommend you check back in occasionally as new features will be added on a regular basis.
Please [https://www.industrialvibes.com/contact.html contact] us if you require assistance with custom data processing. Also, we recommend you check back in occasionally as new features will be added on a regular basis.
== Next ==
[[FFT Setup]]

Revision as of 02:12, 6 June 2024

You can import the raw data into other programs without the need to convert or export it. The data is stored in a standard binary format, with one row of data of data for the time stamps and one for each active channel. The data units are raw voltage, as measured. Here is a matlab code snippet to get you started:

fid = fopen(filePathAndName,'r');

data = fread(fid, [nChannels+1, inf], 'double')';

fclose(fid);

Please contact us if you require assistance with custom data processing. Also, we recommend you check back in occasionally as new features will be added on a regular basis.

Next

FFT Setup