hypothesis.m 135 B

12345678
  1. function h = hypothesis( theta, X )
  2. %HYPOTHESIS 此处显示有关此函数的摘要
  3. % 此处显示详细说明
  4. h = sigmoid(X * theta);
  5. end