You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.m 170 B

8 years ago
123456
  1. function [JVal, gradient] = functionCost(theta)
  2. JVal = theta' * theta;
  3. gradient = theta;
  4. % =========================================================================
  5. end

机器学习

Contributors (1)