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的MuPAD工具中绘制一个函数,似乎不正确。
我在(MuPAD)中的功能是:
P = exp(-10)*10^n/n! plot(P, n=0:24);
在常规的 m 文件中是:
n=0:24; P = exp(-10).*(10.^n)/factorial(n); plot(n,P);
它的结果是不正确的对角线。但是,常规 m 文件脚本中的相同函数绘制得非常好。任何想法?