本文介紹 django.db.models.functions.Sin
的用法。
聲明
class Sin(expression, **extra)
返回數值字段或表達式的正弦值。
使用示例:
>>> from django.db.models.functions import Sin
>>> Vector.objects.create(x=5.4, y=-2.3)
>>> vector = Vector.objects.annotate(x_sin=Sin('x'), y_sin=Sin('y')).get()
>>> vector.x_sin, vector.y_sin
(-0.7727644875559871, -0.7457052121767203)
它也可以注冊為轉換。例如:
>>> from django.db.models import FloatField
>>> from django.db.models.functions import Sin
>>> FloatField.register_lookup(Sin)
>>> # Get vectors whose sin() is less than 0
>>> vectors = Vector.objects.filter(x__sin__lt=0, y__sin__lt=0)
相關用法
- Python Django SimpleTestCase.client用法及代碼示例
- Python Django Signal用法及代碼示例
- Python Django SimpleTestCase.assertTemplateUsed用法及代碼示例
- Python Django SimpleTestCase.assertRaisesMessage用法及代碼示例
- Python Django SimpleTestCase.assertHTMLEqual用法及代碼示例
- Python Django SimpleTestCase.client_class用法及代碼示例
- Python Django SimpleTestCase.assertFieldOutput用法及代碼示例
- Python Django Sign用法及代碼示例
- Python Tableau SiteItem用法及代碼示例
- Python Django SimpleArrayField.base_field用法及代碼示例
- Python Django SimpleArrayField.delimiter用法及代碼示例
- Python Scipy integrate.quadrature()用法及代碼示例
- Python Scipy stats.hypsecant.moment()用法及代碼示例
- Python String Center()用法及代碼示例
- Python Scipy stats.hypsecant.median()用法及代碼示例
- Python Sympy Ellipse.equation()用法及代碼示例
- Python String decode()用法及代碼示例
- Python String轉Binary用法及代碼示例
- Python String count()用法及代碼示例
- Python Scipy stats.halfgennorm.fit()用法及代碼示例
- Python Tableau Server用法及代碼示例
- Python Sympy encloses_point()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python Scipy stats.halfgennorm.stats()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.db.models.functions.Sin。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。