matlab_sys/lib.rs
1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"),"/README.md"))]
2
3#[cfg(not(target_pointer_width = "64"))]
4compile_error!("The bindings are only valid for 64-bit applications. All Matlab versions after 2015b are only available in 64-bit.");
5
6mod raw;
7#[cfg(feature = "interleaved-complex")]
8pub use raw::interleaved_complex;
9#[cfg(feature = "separate-complex")]
10pub use raw::separate_complex;