⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stirling1.m

📁 一些常被用于教学或者参考的概率论的实例的源代码
💻 M
字号:
%stirling1.m
clear
for n=1:170
   f(n)=log(gamma(n+1));
   s(n)=n*log(n)-n;
end
subplot(1,2,1)
plot(f-s)
grid
xlabel('n')
ylabel('Absolute Error')
title('ln(n!) - [nln(n)-n]')
subplot(1,2,2)
semilogx(f./s)
grid
xlabel('n')
ylabel('Relative Error')
title('ln(n!)/[nln(n)-n]')
figure(1)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -