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.

warmUpExercise.m 520 B

8 years ago
123456789101112131415161718192021
  1. function A = warmUpExercise()
  2. %WARMUPEXERCISE Example function in octave
  3. % A = WARMUPEXERCISE() is an example function that returns the 5x5 identity matrix
  4. A = [];
  5. % ============= YOUR CODE HERE ==============
  6. % Instructions: Return the 5x5 identity matrix
  7. % In octave, we return values by defining which variables
  8. % represent the return values (at the top of the file)
  9. % and then set them accordingly.
  10. A = eye(5);
  11. % ===========================================
  12. end

机器学习

Contributors (1)