<div dir="ltr">Hi,
<div> Consider the example you have a struct</div><div><br></div><div><br></div><div>Struct A{</div><div> float a,b,c</div><div>} </div><div><br></div><div>Struct A_v</div><div>{</div><div> float_v a_v,b_v,c_v</div><div>}</div><div><br></div><div>void main()</div><div>{</div><div> A a = new A[1000];</div><div> A_v a_v = new A_v[1000/float_v::Size]</div><div> </div><div><br></div><div> // Assume here there is a code that populates a with values</div><div><br></div><div> I want to write a code here which would basically move values of a into a_v because deinterleave doesnt work. Is there a form of fill() or store() or load() I can use here?</div><div><br></div><div><br></div><div>}</div><div><br></div><div><br></div><div><br></div><div>Regards,</div><div>Krishna </div></div>