Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3247533d authored by hhakim's avatar hhakim
Browse files

Document matfaust.Faust.get_handle.

parent d214998a
No related branches found
No related tags found
No related merge requests found
......@@ -2378,8 +2378,15 @@ classdef Faust
set_Fv_mul_mode(self.matrix, mode)
end
function H = get_handle(self)
H = self.matrix.objectHandle;
%================================================================
%> Returns the Faust F C++ native object pointer as an integer.
%===
%>
%> @retval H: handle (address as an integer).
%>
%================================================================
function H = get_handle(F)
H = F.matrix.objectHandle;
end
end
methods(Access = private)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment