From: Max on
I know I asked this question in another thread but I fell like I have to reiterate it one more time in the more general form to be absolutely sure that I exhausted all my possibilities and reached the absolute performance limit.

So here is the question:

Is there any way to improve the performance of the following code

function this = myclass(h_var)
this = struct('handle', []);
this = class(this,'myclass');
end

This code resides in the folder @myclass and performance is estimated using
"tic;b=myclass(a);toc".
vector 'a' could be anything, but for the sake of clarity, let say that 'a' is rand(1,10).