Hello,
I need to set up pardiso for multiple right hand sides. However I failed to do so, because I'm not really a great programmer. For me, it's not quiet clear, in which form x and b have to be.
I tried a two-dimensional dynamic array but it didn't work.
double **x = new double * ;
for( int j = 0 ; j < n ; j++ )
{
x = new double[nrhs];
}
Is it supposed to bea vector ina row major format?
Thanks for your help!!