用matlab怎么画出y=x^0.5图形
问题描述:
用matlab怎么画出y=x^0.5图形
答
x=0:0.1:1;
y=x*0.5;
plot(x,y);
用matlab怎么画出y=x^0.5图形
x=0:0.1:1;
y=x*0.5;
plot(x,y);