The OpenD Programming Language

kronecker.kronecker

template kronecker(alias fun = product)
static if(__traits(isSame, naryFun!fun, fun))
kronecker
(
NdFields...
)
(
NdFields fields
)
if (
allSatisfy!(hasShape, NdFields) ||
allSatisfy!(hasLength, NdFields)
)

Parameters

fields NdFields

list of either fields with lengths or ndFields with shapes. All ndFields must have the same dimension count.

Return Value

Type: auto

Kronecker!(fun, NdFields)(fields).slicedNdField

Meta