Question: A problem with Threads using

Hi. I need to calculate the elements of the large two-dimensional symmetric matrix.

for j from 1 to N do
for i from j to N do
    a[i,j]:=elem(i,j):
od:
od:

The calculations of elements are time consuming. I want to use Threads for this purpose. Could you help me with it? Thank you.

Please Wait...