Earth Engine 即將推出
非商業用途的配額級別,以便保護共用運算資源,並確保所有使用者都能享有穩固效能。所有非商業用途的專案都必須在
2026 年 4 月 27 日前選取配額級別,否則屆時會預設為「社群」級別。在
2026 年 4 月 27 日,所有專案 (無論選取級別的日期為何) 的級別配額都會生效。
瞭解詳情。
ee.Number.sinh
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
計算輸入值的雙曲正弦。
範例
程式碼編輯器 (JavaScript)
// Input angle in radians.
print('Hyperbolic sine of -5', ee.Number(-5).sinh()); // -74.203210577
print('Hyperbolic sine of -1', ee.Number(-1).sinh()); // -1.175201193
print('Hyperbolic sine of 0', ee.Number(0).sinh()); // 0
print('Hyperbolic sine of 1', ee.Number(1).sinh()); // 1.175201193
print('Hyperbolic sine of 5', ee.Number(5).sinh()); // 74.203210577
// Convert degrees to radians.
var degrees = 45;
var radians = degrees * (Math.PI/180);
print('Hyperbolic sine of 45 degrees',
ee.Number(radians).sinh()); // 0.868670961
Python 設定
請參閱
Python 環境頁面,瞭解 Python API 和如何使用 geemap 進行互動式開發。
import ee
import geemap.core as geemap
Colab (Python)
import math
# Input angle in radians.
display('Hyperbolic sine of -5:', ee.Number(-5).sinh()) # -74.203210577
display('Hyperbolic sine of -1:', ee.Number(-1).sinh()) # -1.175201193
display('Hyperbolic sine of 0:', ee.Number(0).sinh()) # 0
display('Hyperbolic sine of 1:', ee.Number(1).sinh()) # 1.175201193
display('Hyperbolic sine of 5:', ee.Number(5).sinh()) # 74.203210577
# Convert degrees to radians.
degrees = 45
radians = degrees * (math.pi/180)
display('Hyperbolic sine of 45 degrees:',
ee.Number(radians).sinh()) # 0.868670961
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-10-30 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-10-30 (世界標準時間)。"],[],[]]