已回答 Error : "Too many input arguments"
Hi,
yes, your defined f as a function with only 1 inputargument
f = @(x)mseFunction(x(1),x(2),y,yS);
but then you wan...
已回答 How to refer the figure name in matlab
Hi,JazzMusic
did u try
figure(h1)
to set h1 the current figure before u use subplot?
figure(h1)
subplot(1,3,1)
...