How to get the address of libpointer?

2 Ansichten (letzte 30 Tage)
huachun chen
huachun chen am 14 Jan. 2020
Beantwortet: Steven Lord am 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?

Antworten (1)

Steven Lord
Steven Lord am 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')

Kategorien

Mehr zu Call C from MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by