matlab绘制函数 y=e^,x

y=e^(x)

>> x=exp(1)

x =

    2.7183

>> 
>> x1=-10:0.1:10;
>> 
>> y=x.^x1;
>> 
>> plot(x1,y)
>> 

matlab绘制函数  y=e^,x