LabeledRationalFunction
data class LabeledRationalFunction<Number>(val numerator: LabeledPolynomial<Number>, val denominator: LabeledPolynomial<Number>) : RationalFunction<LabeledPolynomial<Number>> (source)
Functions
Link copied to clipboard
fun <C> LabeledRationalFunction<C>.substitute(args: KoneMap<LabeledVariable, C>): LabeledRationalFunction<C>
fun <C> LabeledRationalFunction<C>.substitute(args: KoneMap<LabeledVariable, LabeledPolynomial<C>>): LabeledRationalFunction<C>
fun <C> LabeledRationalFunction<C>.substitute(args: KoneMap<LabeledVariable, LabeledRationalFunction<C>>): LabeledRationalFunction<C>
fun <C> LabeledRationalFunction<C>.substitute(vararg inputs: KoneMapEntry<LabeledVariable, C>): LabeledRationalFunction<C>
fun <C> LabeledRationalFunction<C>.substitute(vararg inputs: KoneMapEntry<LabeledVariable, LabeledPolynomial<C>>): LabeledRationalFunction<C>
fun <C> LabeledRationalFunction<C>.substitute(vararg inputs: KoneMapEntry<LabeledVariable, LabeledRationalFunction<C>>): LabeledRationalFunction<C>