Home
last modified time | relevance | path

Searched refs:interp1d (Results 1 – 14 of 14) sorted by relevance

/libCEED/tests/output/
H A Dt300-basis.out8 interp1d:
25 interp1d:
42 interp1d:
H A Dt300-basis-f.out8 interp1d:
25 interp1d:
42 interp1d:
/libCEED/python/tests/output/
H A Dtest_300.out8 interp1d:
26 interp1d:
/libCEED/julia/LibCEED.jl/test/output/Float32/
H A Db1.out8 interp1d:
H A Db2.out8 interp1d:
/libCEED/julia/LibCEED.jl/test/output/Float64/
H A Db1.out8 interp1d:
H A Db2.out8 interp1d:
/libCEED/tests/
H A Dt553-operator-f.f9032 real*8 interp1d(interpsize),interpctof(interpsize) variable
112 call ceedbasisgetinterp1d(bctof,interp1d,ioffset,err)
114 interpctof(i)=interp1d(ioffset+i)
H A Dt552-operator-f.f9038 real*8 interp1d(interpsize),interpctof(interpsize)
133 call ceedbasisgetinterp1d(bctof,interp1d,ioffset,err)
135 interpctof(i)=interp1d(ioffset+i)
/libCEED/rust/libceed/src/
H A Dbasis.rs144 interp1d: &[crate::Scalar], in create_tensor_H1()
163 interp1d.as_ptr(), in create_tensor_H1()
H A Dlib.rs704 interp1d: &[crate::Scalar], in basis_tensor_H1()
710 self, dim, ncomp, P1d, Q1d, interp1d, grad1d, qref1d, qweight1d, in basis_tensor_H1()
/libCEED/python/
H A Dceed_basis.py122 def __init__(self, ceed, dim, ncomp, P1d, Q1d, interp1d, grad1d, argument
133 interp1d.__array_interface__['data'][0])
H A Dceed.py443 def BasisTensorH1(self, dim, ncomp, P1d, Q1d, interp1d, grad1d, argument
467 return BasisTensorH1(self, dim, ncomp, P1d, Q1d, interp1d, grad1d,
/libCEED/julia/LibCEED.jl/src/
H A DBasis.jl60 create_tensor_h1_basis(c::Ceed, dim, ncomp, p, q, interp1d, grad1d, qref1d, qweight1d)
70 - `interp1d`: Matrix of size `(q, p)` expressing the values of nodal basis functions at
84 interp1d::AbstractArray{CeedScalar},
89 @assert size(interp1d) == (q, p)
95 interp1d_rowmajor = collect(interp1d')