Hi
I have an multidimensional Array like test[2][abababababab....] of Size 1024
how can i view for example test[0][0]+2 wich should equal all the a's of test[0] ?
thx
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi
I have an multidimensional Array like test[2][abababababab....] of Size 1024
how can i view for example test[0][0]+2 wich should equal all the a's of test[0] ?
thx
Hi i found out how it works
the syntax for the graph properties is like:
&(test[0])[0]
index increment 2
But if i want to see all the b's like test[0][1]+2 i have to use the above mentioned syntax right?
for
int test[2][10] = {{5,8,5,8,5,8,5,8,5,8},{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}};
Assume Acquisition Buffer size of 5 and Dsp Data type matching the target int size, using index increment of 2,
If you want the 5s then
Start Address can be set to test[0]
If you want the 8s then
Start Address can be set to test[0] + 1
Regards
Ralph