How to get the address of libpointer?

2 vues (au cours des 30 derniers jours)
huachun chen
huachun chen le 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?

Réponses (1)

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

Catégories

En savoir plus sur Call C from MATLAB dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by