Commit 1ec259b4 authored by jayd1860's avatar jayd1860
Browse files

v1.15.3

-- Minor change to README.md for standalone SNIRF to get rid of '%' from README.md example text to make it appear clearer on github because it treats '%' as a special character
parent a90dc75d
Loading
Loading
Loading
Loading
+12 −11
Original line number Diff line number Diff line
@@ -29,14 +29,15 @@ Run the demos demo_snirf.m and demo_snirf_readfile.m (which should be available

3. Example 1:

	% Save .nirs file in SNIRF format
	* Save .nirs file in SNIRF format

    nirs = load('neuro_run01.nirs','-mat');
    snirf1 = SnirfClass(nirs);
    snirf1.Save('neuro_run01.snirf');
    snirf1.Info();

	% Check that the file was saved correctly by looking at
	% snirf2 contents and comparing with snirf1 contents
	* Check that the file was saved correctly by looking at	snirf2 contents and comparing with snirf1 contents

    snirf2 = SnirfClass();
    snirf2.Load('neuro_run01.snirf');
    snirf2.Info();