This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
cyh
/
coursera_machine_learning_ex
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
401f1eae55
Rami (Branch)
Tag
master
coursera_machin...
/
ex3
/
hypothesis.m
hypothesis.m
129 B
Cronologia
Originale
1
2
3
4
5
6
function h = hypothesis( theta, X )
%HYPOTHESIS 此处显示有关此函数的摘要
% 此处显示详细说明
h = sigmoid(X * theta);
end