Note
Go to the end to download the full example code.
Two-dimensional Basis#
# Author: Steven Golovkine <steven_golovkine@icloud.com>
# License: MIT
# Load packages
import numpy as np
from FDApy.representation import Basis
from FDApy.representation import DenseArgvals
from FDApy.visualization import plot
# Parameters
name = ("fourier", "fourier")
n_functions = (5, 5)
argvals = DenseArgvals(
{"input_dim_0": np.linspace(0, 1, 101), "input_dim_1": np.linspace(0, 1, 51)}
)


Total running time of the script: (0 minutes 3.086 seconds)