Hi,
I need to create a matrix whose rows and columns are computed dynamically, so I need to create a matrix such as
But this will not compile because rows/cols are not constant. Is there a way to work around?Code:
int rows = calcRows(); int cols = calcCols(); QGenericMatrix<cols, rows, qreal> matrix;
Thanks!