We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab7c07 commit f9709b5Copy full SHA for f9709b5
LoopStructural/api/interpolate.py
@@ -1 +1,13 @@
1
+import numpy as np
2
+import pandas as pd
3
+
4
+from typing import Optional
5
from LoopStructural.interpolators import PiecewiseLinearInterpolator
6
7
8
+def interpolate_property(
9
+ value_points: Optional[np.ndarray] = None,
10
+ norm_constraints: Optional[np.ndarray] = None,
11
+ interpolatortype="FDI",
12
+):
13
+ pass
0 commit comments