Closes a Matlab binary MAT-file.
status = matfile_close(fd)
Real: file descriptor (returned by matfile_open).
Boolean: %T if closure succeeds, %F otherwise.
Closes a Matlab binary MAT-file opened by matfile_open.
fd = matfile_open("test_matfile.mat","w"); matfile_varwrite(fd, "foo", "bar", %t); if matfile_close(fd) == %t then disp("close worked!"); else disp("close failed!"); end fd = matfile_open("test_matfile.mat"); matfile_listvar(fd) matfile_close(fd); | ![]() | ![]() |
This function uses MATIO library (
http://sourceforge.net/projects/matio/
).