We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b4d818 commit 1bb1af4Copy full SHA for 1bb1af4
matlab/src/cpp/arrow/matlab/c/proxy/array.cc
@@ -46,5 +46,13 @@ namespace arrow::matlab::c::proxy {
46
return std::make_shared<Array>();
47
}
48
49
+ void getAddress(libmexclass::proxy::method::Context& context) {
50
+ namespace mda = ::matlab::data;
51
+
52
+ mda::ArrayFactory factory;
53
+ auto address = reinterpret_cast<uint64_t>(arrowArray.get());
54
+ context.outputs[0] = factory.createScalar(address);
55
+ }
56
57
58
} // namespace arrow::matlab::c::proxy
0 commit comments