matlab如何求二次函数顶点坐标
x=0:1:10;
y=x.^2-2*x-3;
plot(x,y);
title('Plotofy=x.^2-2*x-3');
xlabel('x');
ylabel('y');
gridoff;函数是上面这个为例顺便求出顶点坐标