Join the IDNLearn.com community and start finding the answers you need today. Get prompt and accurate answers to your questions from our community of experts who are always ready to help.

A = [1,2,3,4,5]; B = [3,4,5,6,7]; C = [-1,-3,-5,-7,-9]; D(1,5) = 0; for m = 5:-1:1 D(1,m) = A(1,m) - B(1,m) C(1,m); A(1,m) = 2*D(1,m); end A C D