hypothesis.m 120 B

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