?? hinfex1a.m
字號:
function HinfEx1a
th = 0 : .01 : .99;
%th = 5 : .01 : 10;
if 1 == 1
p1 = (1-th+sqrt((th-1).*(th-5)))/2./(1-th);
p2 = (1-th-sqrt((th-1).*(th-5)))/2./(1-th);
close all;
plot(th, p1, 'r'); hold;
plot(th, p2, 'b');
return;
end
Bound1 = 2 * (1 - th) ./ ( 1 - th + sqrt( (th - 1) .* (th - 5) ) );
Bound2 = 2 * (1 - th) ./ ( 1 - th - sqrt( (th - 1) .* (th - 5) ) );
Limit = th - 1;
close all;
plot(th, Limit, 'k'); hold;
plot(th, Bound1, 'r');
plot(th, Bound2, 'b');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -