ee.Number.acos

ইনপুটের রেডিয়ানে আর্কোসাইন গণনা করে।

ব্যবহার রিটার্নস
Number. acos () সংখ্যা
যুক্তি টাইপ বিস্তারিত
এই: input সংখ্যা ইনপুট মান।

উদাহরণ

কোড এডিটর (জাভাস্ক্রিপ্ট)

// The domain of arccosine is [-1,1], inputs outside the domain are invalid.
print('Arccosine of -1', ee.Number(-1).acos());  // 3.141592653 (π)
print('Arccosine of 0', ee.Number(0).acos());  // 1.570796326 (π/2)
print('Arccosine of 1', ee.Number(1).acos());  // 0

পাইথন সেটআপ

পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।

import ee
import geemap.core as geemap

Colab (পাইথন)

# The domain of arccosine is [-1,1], inputs outside the domain are invalid.
print('Arccosine of -1:', ee.Number(-1).acos().getInfo())  # 3.141592653 (π)
print('Arccosine of 0:', ee.Number(0).acos().getInfo())  # 1.570796326 (π/2)
print('Arccosine of 1:', ee.Number(1).acos().getInfo())  # 0