Skip to content

Commit f9709b5

Browse files
committed
fix: adding placeholder for interpolate api
1 parent 7ab7c07 commit f9709b5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

LoopStructural/api/interpolate.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1+
import numpy as np
2+
import pandas as pd
3+
4+
from typing import Optional
15
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

Comments
 (0)