I has a question about a pointer. For example I has a data as below,
I want to make a comparism of the submission of data_1 and data_2 with result_data. The result of submission has it own value and ignore it but use another information in memory result_data for comparism. I confuse on how to use a pointer.
Thank You
Code:
data_1[frame][axis]={{1,2,3},{2,3,4},...,{x,y,z}}
data_2[frame][axis]={{3,4,5},{4,5,6},...,{x,y,z}}
[u]in memory[/u]
result_data[frame][i]={1,0,1,0,2,0,3,....,n}
data_1[frame][axis]-data_2[frame][axis]=[COLOR=red]POINTER[/color]result_data[frame][i]
I want to make a comparism of the submission of data_1 and data_2 with result_data. The result of submission has it own value and ignore it but use another information in memory result_data for comparism. I confuse on how to use a pointer.
Thank You