代码搜索结果
找到约 1,193 项符合
Q 的代码
reinforcementlearning.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Q learning of single agent move in N rooms
% Matlab Code companion of
% Q Learning by Example
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
q.m
function [y]=Q(x)
% [y]=Q(x)
% Q evaluates the Q-function.
% y = 1/sqrt(2*pi) * integral from x to inf of exp(-t^2/2) dt.
% y = (1/2) * erfc(x/sqrt(2)).
y=(1/2)*erfc(x/sqrt(2));
faq.txt
Q: What machines will the PXE scraper work on?
A: The scraper code will run on any x86 system that has PXE support. This
includes systems with built-in NICs and PXE-capable BIOSes and older
sys
q.m
% File: q.m
%
%
function y=q(x)
y = 0.5*erfc(x/sqrt(2));
% End function file.