is there a way to not assign to out variables?
I don't think so. Is there a good reason not to return the matrix directly (taking advantage of in-place construction)?
float[M][M] f()
{
float[M][M] mean = void;
// init
return mean;
}
is there a way to not assign to out variables?
I don't think so. Is there a good reason not to return the matrix directly (taking advantage of in-place construction)?
float[M][M] f()
{
float[M][M] mean = void;
// init
return mean;
}