码迷,mamicode.com
首页 > 其他好文 > 详细

tensorflow-acosh,acos

时间:2018-12-08 23:56:32      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:auth   code   coding   const   1.7   flow   usr   ESS   python   

acos函数是反余弦函数


#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Mon Aug 27 11:16:32 2018

@author: myhaspl
"""

import tensorflow as tf
a = tf.constant([[0.1, -0.2], [-0.3, 0.4]])
result1=tf.acos(a)

sess=tf.Session()
with sess:
    print sess.run(result1)

[[1.4706289 1.7721543]
?[1.875489 ?1.1592795]]

acosh反双曲余弦-X中元素的反双曲余弦

#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Mon Aug 27 11:16:32 2018

@author: myhaspl
"""

import tensorflow as tf
a = tf.constant([[1., 2.], [3., 4.]])
result1=tf.acosh(a)

sess=tf.Session()
with sess:
    print sess.run(result1)

[[0. ? ? ? ?1.316958 ]
?[1.7627472 2.063437 ]]

tensorflow-acosh,acos

标签:auth   code   coding   const   1.7   flow   usr   ESS   python   

原文地址:http://blog.51cto.com/13959448/2327982

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!