How to get the address of libpointer?

2 views (last 30 days)
huachun chen
huachun chen on 14 Jan 2020
Answered: Steven Lord on 14 Jan 2020
I can get the values through the get method.
x=[1 4 5];
xPtr=libpointer('doublePtr',x);
get(xPtr,'value')
How to get the address of libpointer?

Answers (1)

Steven Lord
Steven Lord on 14 Jan 2020
Why do you need or want to get the address?
If you're looking to iterate through the array, just use the + operator as shown by the examples on this documentation page. Using your original example, try:
get(xPtr+1, 'value')

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!