From 807a240c49cb926ea47e4587deee4f1cb04092b6 Mon Sep 17 00:00:00 2001 From: snowy Date: Thu, 29 Aug 2024 18:30:25 +0800 Subject: [PATCH] =?UTF-8?q?:fire:=20=E6=B7=BB=E5=8A=A0=E5=AF=B9=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E7=9A=84=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/index.md | 1 - mbcp/mp_math/equation.py | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index b0ccbac..48bd33c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -22,4 +22,3 @@ features: - title: 内置预设 details: 提供了大量的预设,包括常见的几何图形、粒子效果等,方便快速制作 --- - diff --git a/mbcp/mp_math/equation.py b/mbcp/mp_math/equation.py index 61abf3b..a5fbfcc 100644 --- a/mbcp/mp_math/equation.py +++ b/mbcp/mp_math/equation.py @@ -48,6 +48,9 @@ class CurveEquation: def get_partial_derivative_func(func: MultiVarsFunc, var: int | tuple[int, ...], epsilon: Number = EPSILON) -> MultiVarsFunc: """ 求N元函数一阶偏导函数。这玩意不太稳定,慎用。 + > [!warning] + > 目前数学界对于数值微分的稳定性问题还没有很好的解决方案,因此这个函数的稳定性也不是很好。 + Args: func: 函数 var: 变量位置,可为整数(一阶偏导)或整数元组(高阶偏导)