Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98341413
mxSerialize.m
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jan 12, 06:48
Size
1 KB
Mime Type
text/plain
Expires
Tue, Jan 14, 06:48 (1 d, 15 h)
Engine
blob
Format
Raw Data
Handle
23528277
Attached To
R6832 iCAPs public
mxSerialize.m
View Options
function [argout] = mxSerialize(argin)
% MXSERIALIZE converts any MATLAB object into a uint8 array suitable
% for passing down a comms channel to be reconstructed at the other end.
%
% See also MXDESERIALIZE
% Copyright (C) 2005, Brad Phelan http://xtargets.com
% Copyright (C) 2007, Robert Oostenveld http://www.fcdonders.ru.nl
%
% This file is part of FieldTrip, see http://www.fieldtriptoolbox.org
% for the documentation and details.
%
% FieldTrip is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% FieldTrip is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with FieldTrip. If not, see <http://www.gnu.org/licenses/>.
%
% $Id$
if ft_platform_supports('libmx_c_interface') % older than 2014a
% use the original implementation of the mex file
argout = mxSerialize_c(argin);
else
% use the C++ implementation of the mex file
% see http://bugzilla.fieldtriptoolbox.org/show_bug.cgi?id=2452
argout = mxSerialize_cpp(argin);
end
Event Timeline
Log In to Comment