├── .bintray.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── appveyor.yml ├── env_add.m ├── examples ├── HandleMetaData.m ├── LSLVersion.m ├── README.md ├── ReceiveData.m ├── ReceiveDataInChunks.m ├── ReceiveStringMarkers.m ├── SendData.m ├── SendDataInChunks.m └── SendStringMarkers.m ├── lsl_get_dll.m ├── lsl_inlet.m ├── lsl_loadlib.m ├── lsl_outlet.m ├── lsl_resolve_all.m ├── lsl_resolve_bypred.m ├── lsl_resolve_byprop.m ├── lsl_streaminfo.m ├── lsl_xml_ptr.m └── mex ├── env_compile.m ├── lsl_append_child.c ├── lsl_append_child_value.c ├── lsl_append_copy.c ├── lsl_child.c ├── lsl_child_value.c ├── lsl_child_value_n.c ├── lsl_close_stream.c ├── lsl_common.h ├── lsl_create_inlet.c ├── lsl_create_outlet.c ├── lsl_create_streaminfo.c ├── lsl_destroy_inlet.c ├── lsl_destroy_outlet.c ├── lsl_destroy_streaminfo.c ├── lsl_empty.c ├── lsl_first_child.c ├── lsl_freelib_.c ├── lsl_get_channel_count.c ├── lsl_get_channel_format.c ├── lsl_get_created_at.c ├── lsl_get_desc.c ├── lsl_get_fullinfo.c ├── lsl_get_hostname.c ├── lsl_get_info.c ├── lsl_get_name.c ├── lsl_get_nominal_srate.c ├── lsl_get_session_id.c ├── lsl_get_source_id.c ├── lsl_get_type.c ├── lsl_get_uid.c ├── lsl_get_version.c ├── lsl_get_xml.c ├── lsl_have_consumers.c ├── lsl_is_text.c ├── lsl_last_child.c ├── lsl_library_version.c ├── lsl_loadlib_.c ├── lsl_local_clock.c ├── lsl_name.c ├── lsl_next_sibling.c ├── lsl_next_sibling_n.c ├── lsl_open_stream.c ├── lsl_parent.c ├── lsl_prepend_child.c ├── lsl_prepend_child_value.c ├── lsl_prepend_copy.c ├── lsl_previous_sibling.c ├── lsl_previous_sibling_n.c ├── lsl_protocol_version.c ├── lsl_pull_chunk_d.c ├── lsl_pull_sample_buf.c ├── lsl_pull_sample_d.c ├── lsl_pull_sample_str.c ├── lsl_push_chunk.c ├── lsl_push_sample.c ├── lsl_remove_child.c ├── lsl_remove_child_n.c ├── lsl_resolve_all_.c ├── lsl_resolve_bypred_.c ├── lsl_resolve_byprop_.c ├── lsl_samples_available.c ├── lsl_set_child_value.c ├── lsl_set_name.c ├── lsl_set_postprocessing.c ├── lsl_set_value.c ├── lsl_time_correction.c ├── lsl_value.c └── lsl_wait_for_consumers.c /.bintray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/.bintray.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | .idea 3 | .venv 4 | *.m~ 5 | *.asv -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/appveyor.yml -------------------------------------------------------------------------------- /env_add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/env_add.m -------------------------------------------------------------------------------- /examples/HandleMetaData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/HandleMetaData.m -------------------------------------------------------------------------------- /examples/LSLVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/LSLVersion.m -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/ReceiveData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/ReceiveData.m -------------------------------------------------------------------------------- /examples/ReceiveDataInChunks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/ReceiveDataInChunks.m -------------------------------------------------------------------------------- /examples/ReceiveStringMarkers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/ReceiveStringMarkers.m -------------------------------------------------------------------------------- /examples/SendData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/SendData.m -------------------------------------------------------------------------------- /examples/SendDataInChunks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/SendDataInChunks.m -------------------------------------------------------------------------------- /examples/SendStringMarkers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/examples/SendStringMarkers.m -------------------------------------------------------------------------------- /lsl_get_dll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_get_dll.m -------------------------------------------------------------------------------- /lsl_inlet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_inlet.m -------------------------------------------------------------------------------- /lsl_loadlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_loadlib.m -------------------------------------------------------------------------------- /lsl_outlet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_outlet.m -------------------------------------------------------------------------------- /lsl_resolve_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_resolve_all.m -------------------------------------------------------------------------------- /lsl_resolve_bypred.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_resolve_bypred.m -------------------------------------------------------------------------------- /lsl_resolve_byprop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_resolve_byprop.m -------------------------------------------------------------------------------- /lsl_streaminfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_streaminfo.m -------------------------------------------------------------------------------- /lsl_xml_ptr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/lsl_xml_ptr.m -------------------------------------------------------------------------------- /mex/env_compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/env_compile.m -------------------------------------------------------------------------------- /mex/lsl_append_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_append_child.c -------------------------------------------------------------------------------- /mex/lsl_append_child_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_append_child_value.c -------------------------------------------------------------------------------- /mex/lsl_append_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_append_copy.c -------------------------------------------------------------------------------- /mex/lsl_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_child.c -------------------------------------------------------------------------------- /mex/lsl_child_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_child_value.c -------------------------------------------------------------------------------- /mex/lsl_child_value_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_child_value_n.c -------------------------------------------------------------------------------- /mex/lsl_close_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_close_stream.c -------------------------------------------------------------------------------- /mex/lsl_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_common.h -------------------------------------------------------------------------------- /mex/lsl_create_inlet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_create_inlet.c -------------------------------------------------------------------------------- /mex/lsl_create_outlet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_create_outlet.c -------------------------------------------------------------------------------- /mex/lsl_create_streaminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_create_streaminfo.c -------------------------------------------------------------------------------- /mex/lsl_destroy_inlet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_destroy_inlet.c -------------------------------------------------------------------------------- /mex/lsl_destroy_outlet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_destroy_outlet.c -------------------------------------------------------------------------------- /mex/lsl_destroy_streaminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_destroy_streaminfo.c -------------------------------------------------------------------------------- /mex/lsl_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_empty.c -------------------------------------------------------------------------------- /mex/lsl_first_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_first_child.c -------------------------------------------------------------------------------- /mex/lsl_freelib_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_freelib_.c -------------------------------------------------------------------------------- /mex/lsl_get_channel_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_channel_count.c -------------------------------------------------------------------------------- /mex/lsl_get_channel_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_channel_format.c -------------------------------------------------------------------------------- /mex/lsl_get_created_at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_created_at.c -------------------------------------------------------------------------------- /mex/lsl_get_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_desc.c -------------------------------------------------------------------------------- /mex/lsl_get_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_fullinfo.c -------------------------------------------------------------------------------- /mex/lsl_get_hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_hostname.c -------------------------------------------------------------------------------- /mex/lsl_get_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_info.c -------------------------------------------------------------------------------- /mex/lsl_get_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_name.c -------------------------------------------------------------------------------- /mex/lsl_get_nominal_srate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_nominal_srate.c -------------------------------------------------------------------------------- /mex/lsl_get_session_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_session_id.c -------------------------------------------------------------------------------- /mex/lsl_get_source_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_source_id.c -------------------------------------------------------------------------------- /mex/lsl_get_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_type.c -------------------------------------------------------------------------------- /mex/lsl_get_uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_uid.c -------------------------------------------------------------------------------- /mex/lsl_get_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_version.c -------------------------------------------------------------------------------- /mex/lsl_get_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_get_xml.c -------------------------------------------------------------------------------- /mex/lsl_have_consumers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_have_consumers.c -------------------------------------------------------------------------------- /mex/lsl_is_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_is_text.c -------------------------------------------------------------------------------- /mex/lsl_last_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_last_child.c -------------------------------------------------------------------------------- /mex/lsl_library_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_library_version.c -------------------------------------------------------------------------------- /mex/lsl_loadlib_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_loadlib_.c -------------------------------------------------------------------------------- /mex/lsl_local_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_local_clock.c -------------------------------------------------------------------------------- /mex/lsl_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_name.c -------------------------------------------------------------------------------- /mex/lsl_next_sibling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_next_sibling.c -------------------------------------------------------------------------------- /mex/lsl_next_sibling_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_next_sibling_n.c -------------------------------------------------------------------------------- /mex/lsl_open_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_open_stream.c -------------------------------------------------------------------------------- /mex/lsl_parent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_parent.c -------------------------------------------------------------------------------- /mex/lsl_prepend_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_prepend_child.c -------------------------------------------------------------------------------- /mex/lsl_prepend_child_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_prepend_child_value.c -------------------------------------------------------------------------------- /mex/lsl_prepend_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_prepend_copy.c -------------------------------------------------------------------------------- /mex/lsl_previous_sibling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_previous_sibling.c -------------------------------------------------------------------------------- /mex/lsl_previous_sibling_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_previous_sibling_n.c -------------------------------------------------------------------------------- /mex/lsl_protocol_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_protocol_version.c -------------------------------------------------------------------------------- /mex/lsl_pull_chunk_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_pull_chunk_d.c -------------------------------------------------------------------------------- /mex/lsl_pull_sample_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_pull_sample_buf.c -------------------------------------------------------------------------------- /mex/lsl_pull_sample_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_pull_sample_d.c -------------------------------------------------------------------------------- /mex/lsl_pull_sample_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_pull_sample_str.c -------------------------------------------------------------------------------- /mex/lsl_push_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_push_chunk.c -------------------------------------------------------------------------------- /mex/lsl_push_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_push_sample.c -------------------------------------------------------------------------------- /mex/lsl_remove_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_remove_child.c -------------------------------------------------------------------------------- /mex/lsl_remove_child_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_remove_child_n.c -------------------------------------------------------------------------------- /mex/lsl_resolve_all_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_resolve_all_.c -------------------------------------------------------------------------------- /mex/lsl_resolve_bypred_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_resolve_bypred_.c -------------------------------------------------------------------------------- /mex/lsl_resolve_byprop_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_resolve_byprop_.c -------------------------------------------------------------------------------- /mex/lsl_samples_available.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_samples_available.c -------------------------------------------------------------------------------- /mex/lsl_set_child_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_set_child_value.c -------------------------------------------------------------------------------- /mex/lsl_set_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_set_name.c -------------------------------------------------------------------------------- /mex/lsl_set_postprocessing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_set_postprocessing.c -------------------------------------------------------------------------------- /mex/lsl_set_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_set_value.c -------------------------------------------------------------------------------- /mex/lsl_time_correction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_time_correction.c -------------------------------------------------------------------------------- /mex/lsl_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_value.c -------------------------------------------------------------------------------- /mex/lsl_wait_for_consumers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labstreaminglayer/liblsl-Matlab/HEAD/mex/lsl_wait_for_consumers.c --------------------------------------------------------------------------------