📄 xpowery.m
字号:
%xpowery.m/created by PJNahin for "Duelling Idiots"(1/6/99)
%This m-file plots the probability density function of X^Y,
%where X and Y are independent, and both uniform from 0 to 1.
%
%
z=.0001:.01:1;
Z=expint(-log(z))./z;
plot(z,Z)
grid
title('Fig.13.2 - PDF of Z = X^Y, with X and Y uniform from 0 to 1')
ylabel('Probability Density')
xlabel('z')
figure(1)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -