Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.
d is an array of 10 element
r is an array of two element
d(1:5:6)=r says set the values of some elements in d with the values from r. Set the value of d[1], then d[1+5] until the index reaches beyond 6.
if you set it like d(1:2:6), then it will not work because d(1:2:6) will have three elements (d[1], d[3] and d[5]) while r has two. For the assignment the both sides must have the same number of elements.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.