M
mk.supriya
hello,
please go through the following code and tell me where i am wrong.
this is a FOR loop to do some arithmetic operations on a matrix.
instead of the outermost loop(j), if i assign, 0, 1, 2...etc manually,
i am able to get the desired result, but when i run this loop, only
1st row gets the right values. remaining rows, get some very high
values
for j in 0 to 2 loop
temp := 1;
row1 := hm1(j); -- here if i put 0, 1, w/o j loop, correct result
for count in 0 to 2 loop
col := 0;
tempc := 0;
while ( col < (temp * 2)) loop
row2(col) := row1(tempc) + row1(tempc + temp);
row2(col + 1) := row1(tempc) - row1(tempc + temp);
tempc := tempc + 1;
col := col + 2;
end loop;
row1 := row2;
temp := temp * 2;
end loop;
hm2(j):= row2;-- here if i put 0, 1, w/o j loop, correct result
end loop;
please go through the following code and tell me where i am wrong.
this is a FOR loop to do some arithmetic operations on a matrix.
instead of the outermost loop(j), if i assign, 0, 1, 2...etc manually,
i am able to get the desired result, but when i run this loop, only
1st row gets the right values. remaining rows, get some very high
values
for j in 0 to 2 loop
temp := 1;
row1 := hm1(j); -- here if i put 0, 1, w/o j loop, correct result
for count in 0 to 2 loop
col := 0;
tempc := 0;
while ( col < (temp * 2)) loop
row2(col) := row1(tempc) + row1(tempc + temp);
row2(col + 1) := row1(tempc) - row1(tempc + temp);
tempc := tempc + 1;
col := col + 2;
end loop;
row1 := row2;
temp := temp * 2;
end loop;
hm2(j):= row2;-- here if i put 0, 1, w/o j loop, correct result
end loop;