File: mySLOAD.m

package info (click to toggle)
biosig4c%2B%2B 1.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,220 kB
  • sloc: ansic: 41,218; cpp: 8,946; sh: 4,365; makefile: 1,758; python: 87; awk: 73; php: 40; perl: 36; java: 14; ruby: 7
file content (39 lines) | stat: -rw-r--r-- 1,402 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
(*
  Platform independent loading of biosignal data
  Copyright 2011,2012,2016 Alois Schloegl, IST Austria
  This file is part of the "BioSig for C/C++" repository

BioSig is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation;either version 3
of the License,or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.

*)

mySLOAD[filename_, sweeps_] := Module [{link, data}, 
   (* mySLOAD: makes it platform independent *)
   
   link = Install[$SystemID<>"/sload.exe"];
   data = sload[filename, sweeps];
   Uninstall[link];
   data (* return data *)
   ];

(* This demonstrates the usage of the above module mySLOAD
On Windows platform the directory separators must be either 
a single forward slash "/" or double backward slashes "\\"
*)

filename = "AP100427b.dat";
data     = mySLOAD[filename, {1, 0, 0}];
signal   = data[[1]]   (* sampled data *)
t        = data[[2]]   (* sampling time points *)
hdrinfo  = data[[3]]   (* header information *)