chi2plot.m
来自「Mathematical Methods by Moor n Stiling.」· M 代码 · 共 14 行
M
14 行
%
% Plot the chi-squared r.v.
% Copyright 1999 by Todd K. Moon
x = 0:.1:10;
clf
subplot(2,2,1);
for n=1:2:10
n
plot(x,chi2(x,n));
hold on
end
xlabel('z')
ylabel('f_Z(z)')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?