Lines Matching refs:size

70 - `interp1d`:  Matrix of size `(q, p)` expressing the values of nodal basis functions at
72 - `grad1d`: Matrix of size `(p, q)` expressing derivatives of nodal basis functions at
89 @assert size(interp1d) == (q, p)
90 @assert size(grad1d) == (q, p)
125 - `interp`: Matrix of size `(nqpts, nnodes)` expressing the values of nodal basis functions
127 - `grad`: Array of size `(dim, nqpts, nnodes)` expressing derivatives of nodal basis
129 - `qref`: Matrix of size `(dim, nqpts)` holding the locations of quadrature points on the
146 @assert size(interp) == (nqpts, nnodes)
147 @assert size(grad) == (dim, nqpts, nnodes)
148 @assert size(qref) == (dim, nqpts)
183 - `interp`: Matrix of size `(dim, nqpts, nnodes)` expressing the values of basis functions
185 - `div`: Array of size `(nqpts, nnodes)` expressing divergence of basis functions at
187 - `qref`: Matrix of size `(dim, nqpts)` holding the locations of quadrature points on the
204 @assert size(interp) == (dim, nqpts, nnodes)
205 @assert size(div) == (nqpts, nnodes)
206 @assert size(qref) == (dim, nqpts)
241 - `interp`: Matrix of size `(dim, nqpts, nnodes)` expressing the values of basis functions
243 - `curl`: Matrix of size `(curlcomp, nqpts, nnodes)`, `curlcomp = 1 if dim < 3 else dim`)
245 - `qref`: Matrix of size `(dim, nqpts)` holding the locations of quadrature points on the
263 @assert size(interp) == (dim, nqpts, nnodes)
264 @assert size(curl) == (curlcomp, nqpts, nnodes)
265 @assert size(qref) == (dim, nqpts)
325 The result will be returned in a newly allocated array of the correct size.
464 Get the interpolation matrix of the given [`Basis`](@ref). Returns a matrix of size
486 basis, otherwise this function will fail. Returns a matrix of size `(getnumqpts1d(b),
500 Get the gradient matrix of the given [`Basis`](@ref). Returns a tensor of size
515 Get the 1D derivative matrix of the given [`Basis`](@ref). Returns a matrix of size
529 Get the divergence matrix of the given [`Basis`](@ref). Returns a tensor of size
543 Get the curl matrix of the given [`Basis`](@ref). Returns a tensor of size