Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以帮助我并告诉我如何绘制这些函数matlab:
matlab
n!*log(n)
sqr(n)
(n+1)!
log^2(n)
n
log(n^n)
其中n是自然数并且收敛到无穷大?
由于数字很大,这些图看起来并不漂亮,但这就是:
n=logspace(1,10,10); plot(n,factorial(n).*log(n));
对于第一个。sqr 我猜你的意思是平方根,在这种情况下应该使用 sqrt(n) 。