3D Arrays finding an address in a element
Info
This question is closed. Reopen it to edit or answer.
Show older comments
given that an integer array has been declared in the following manner: int a[10] [3] [5]
its base address is 89 what is the address of element a[7] [2] [4] ?
Answers (1)
Adam
on 12 Feb 2019
doc ind2sub
doc sub2ind
will convert between n-dimensional subscripts and linear indices.
In Matlab that is. Your declaration of your variable suggests you are talking about C, but this is a Matlab forum so I assume that is just to tell us what the array is rather than actual code.
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!