: You can't really simulate threads in a good way... you would have to
: run a function for each calculation, but the execution would still
: be linear.
:
: I'd suggest you get x number of 3x3 matrices from somewhere (user
: input, file etc), then start a calculation for each one of them,
: then display the result in the main thread.
:
: ok..Thanks...can u suggest me an algo if i really have to implement it with threads...