Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
matio.h
✓ #include <matio.h>
Open and close a MATLAB .mat file
#include <matio.h>
#include <iostream>
int main() {
mat_t *matfp = Mat_Open("data.mat", MAT_ACC_RDONLY);
if (matfp == NULL) {
std::cerr << "Failed to open file\n";
return 1;
}
Mat_Close(matfp);
std::cout << "MAT file opened\n";
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.