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

17 lines
317 B

  1. Value constructor: Creating a 5x5 matrix
  2. 0.0
  3. 4.0
  4. [[ 0. 0. 0. 0. 0.]
  5. [ 0. 0. 0. 0. 0.]
  6. [ 0. 0. 0. 4. 0.]
  7. [ 0. 0. 0. 0. 0.]
  8. [ 0. 0. 0. 0. 0.]]
  9. 4.0
  10. 5.0
  11. [[ 1. 2. 3.]
  12. [ 4. 5. 6.]]
  13. Value constructor: Creating a 2x3 matrix
  14. 1.0 2.0 3.0
  15. 4.0 5.0 6.0
  16. Freeing a 2x3 matrix
  17. Freeing a 5x5 matrix