From 839d63727e560e5794ae2303a42cadebdd765a6a Mon Sep 17 00:00:00 2001 From: schoffelen <1517611+schoffelen@users.noreply.github.com> Date: Mon, 13 Apr 2026 14:31:41 +0200 Subject: [PATCH 1/2] changed docstring for consistency + typo --- loadbvrf.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/loadbvrf.m b/loadbvrf.m index a7e524e..4c19ba6 100644 --- a/loadbvrf.m +++ b/loadbvrf.m @@ -2,10 +2,10 @@ % readBVRF() - Read data saved in the Brain Vision Recorder format. % % Usage: -% >> [hdr, data, markers] = readBVRF(hdrFile, verbose); +% >> [hdr, participantId, data, channels, markers, impedances] = readBVRF(hdrFile, verbose); % % Inputs: -% hdrFile - Hader file (bvrh). Data (.bvrd) and marker (bvrm) files should be in the same folder. +% hdrFile - Header file (bvrh). Data (.bvrd) and marker (bvrm) files should be in the same folder. % sampleRange - [first, last] samples that define the interval to read. Enter [] to read all samples. % flagMetadata - Loads only the header metadata. % verbose - Optional input. Set to true to display messages. @@ -294,4 +294,4 @@ end end end -end \ No newline at end of file +end From 61a61e43c3bd08dd60ff9754b60497dd761a714d Mon Sep 17 00:00:00 2001 From: schoffelen <1517611+schoffelen@users.noreply.github.com> Date: Mon, 13 Apr 2026 15:58:57 +0200 Subject: [PATCH 2/2] docstring --- loadbvrf.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loadbvrf.m b/loadbvrf.m index 4c19ba6..8bbbadd 100644 --- a/loadbvrf.m +++ b/loadbvrf.m @@ -2,7 +2,7 @@ % readBVRF() - Read data saved in the Brain Vision Recorder format. % % Usage: -% >> [hdr, participantId, data, channels, markers, impedances] = readBVRF(hdrFile, verbose); +% >> [hdr, participantId, data, channels, markers, impedances] = loadbvrf(hdrFile, verbose); % % Inputs: % hdrFile - Header file (bvrh). Data (.bvrd) and marker (bvrm) files should be in the same folder.