tensorflow :: অপস:: অসিন

#include <math_ops.h>

x মৌল-ভিত্তিক ত্রিকোণমিতিক বিপরীত সাইন গণনা করে।

সারসংক্ষেপ

tf.math.asin অপারেশনটি tf.math.sin এর বিপরীতে ফেরত দেয়, যেমন y = tf.math.sin(x) হলে, x = tf.math.asin(y)

দ্রষ্টব্য : tf.math.asin এর আউটপুট সাইনের ইনভার্টেবল রেঞ্জের মধ্যে থাকবে, যেমন [-pi/2, pi/2]।

উদাহরণ স্বরূপ:

# Note: [1.047, 0.785] ~= [(pi/3), (pi/4)]
x = tf.constant([1.047, 0.785])
y = tf.math.sin(x) # [0.8659266, 0.7068252]

tf.math.asin(y) # [1.047, 0.785] = x

যুক্তি:

রিটার্ন:

  • Output : y টেনসর।

কনস্ট্রাক্টর এবং ডেস্ট্রাক্টর

Asin (const :: tensorflow::Scope & scope, :: tensorflow::Input x)

পাবলিক বৈশিষ্ট্য

operation
y

পাবলিক ফাংশন

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

পাবলিক বৈশিষ্ট্য

অপারেশন

Operation operation

y

::tensorflow::Output y

পাবলিক ফাংশন

অসিন

 Asin(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x
)

নোড

::tensorflow::Node * node() const 

অপারেটর::টেনসরফ্লো::ইনপুট

 operator::tensorflow::Input() const 

অপারেটর::টেনসরফ্লো::আউটপুট

 operator::tensorflow::Output() const