kevingurney commented on issue #28145:
URL: https://github.com/apache/arrow/issues/28145#issuecomment-1680985233
Marking this as resolved.
A public `Valid` property, which represents the null values in an Arrow
array, was added to the `arrow.array.Array` classes in #35655.
Example:
```matlab
>> a = arrow.array(uint64([1, 2, 3]), Valid=[true, false, true])
a =
[
1,
null,
3
]
>> a.Valid
ans =
3x1 logical array
1
0
1
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]