This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
cyh
/
coursera_machine_learning_ex
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ツリー:
401f1eae55
ブランチ
タグ
master
coursera_machin...
/
ex3
/
hypothesis.m
hypothesis.m
129 B
履歴
Raw
1
2
3
4
5
6
function h = hypothesis( theta, X )
%HYPOTHESIS 此处显示有关此函数的摘要
% 此处显示详细说明
h = sigmoid(X * theta);
end