出处
h=2*pi/100;
t=0:h:2*pi;r=0:0.05:1;
x=r'*cos(t);
y=r'*sin(t);
z=sqrt(1-x.^2);
meshz(x,y,z)
matlab数学实验中'*什么意思?