io.github.danielTucano.matplotlib.np.sin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matplotlib4k Show documentation
Show all versions of matplotlib4k Show documentation
Matplotlib for kotlin: A simple graph plot library for kotlin with powerful python matplotlib
The newest version!
package io.github.danielTucano.matplotlib.np
import io.github.danielTucano.matplotlib.np.NPVar.Companion.npVarNumber
import io.github.danielTucano.python.PythonScriptBuilder
fun sin(theta: NPVar): NPVar {
return object : NPVar {
override val variableName: String = "np_var_$npVarNumber"
init {
PythonScriptBuilder.addCommand("$variableName = np.sin(${theta.variableName})")
}
}
}