如何用matlab绘制y=(1+x)^(1⼀x)的函数图象

2024-12-16 23:04:07
推荐回答(1个)
回答1:

x=0:0.01:10;
y=(1+x).^(1./x);
plot(x,y)