如何用matlab绘制y=(1+x)^(1/x)的函数图象
问题描述:
如何用matlab绘制y=(1+x)^(1/x)的函数图象
答
x=0:0.01:10;
y=(1+x).^(1./x);
plot(x,y)