We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25344e3 commit 817dcfdCopy full SHA for 817dcfd
matlab/src/matlab/+arrow/+tabular/RecordBatch.m
@@ -142,6 +142,18 @@ function displayScalarObject(obj)
142
recordBatch = arrow.tabular.RecordBatch(proxy);
143
end
144
145
+ function export(obj, cArrowArrayAddress, cArrowSchemaAddress)
146
+ arguments
147
+ obj(1, 1) arrow.tabular.RecordBatch
148
+ cArrowArrayAddress(1, 1) uint64
149
+ cArrowSchemaAddress(1, 1) uint64
150
+ end
151
+ args = struct(...
152
+ ArrowArrayAddress=cArrowArrayAddress,...
153
+ ArrowSchemaAddress=cArrowSchemaAddress...
154
+ );
155
+ obj.Proxy.exportToC(args);
156
157
158
159
methods(Static)
0 commit comments