Hello,
it is possible to precompute the optimal work size for a real QR decomposition. It is used with a work = 0.0 input parameter.
Is it possible to precompute an optimal work size for complex input - the zgeqrf ? If so - how the work parameter has to be selected?
Perhaps like this (in C++) ?:
struct Complex {double real; double imag;}
Complex work;
work.real = 1.0;
work.imag = 0.0;
?
Thanks a lot

