In method lis_vector_set_values2 what is the purposed of this routine. I imagine that this routine performs the following action.
v(start+1:start+count) = value(1:count)
However, why do we set
start=i in the for loop (see lines given below)
In addition, this routine throws an error when flag= LIS_INS_VALUE. This is because start-- goes out of the bound.
Regards
Vikas
In method
lis_vector_set_values2what is the purposed of this routine. I imagine that this routine performs the following action.However, why do we set
start=i in the for loop (see lines given below)
lis/src/vector/lis_vector.c
Line 702 in 04e684b
In addition, this routine throws an error when flag= LIS_INS_VALUE. This is because start-- goes out of the bound.
Regards
Vikas