■ matrix_determinant 함수를 사용해 행렬식 값을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import numpy as np import tensorflow as tf ndarray = np.array([(2, 7, 2), (1, 4, 2), (9, 0, 2)], dtype = 'float32') tensor = tf.matrix_determinant(ndarray) with tf.Session() as sess: print(sess.run(tensor)) [결과] 55.999992 |