Thomas Nield

Results 109 comments of Thomas Nield

@Warkst Alright, I implemented a fix. Can you test a build? You can use JitPack to bring this in as a dependency: https://jitpack.io/#thomasnield/rxkotlin-jdbc/596332118a

@apete so far yes this worked awesome. It worked with beautiful accuracy on my example after enough training and hyperparameter tuning. I think would be good to rename apply() to...

@apete It's not showstopper, just might cause some confusion for Kotlin devs. In Kotlin every type has an `apply()` function to manipulate that item within a closure. Kotlin devs will...

And makes sense regarding the builder structure. I like it.

Some pretty nice idioms are emerging :) ```kotlin fun main(args: Array) { val matrixA = primitivematrix(3,3) { populate { row, col -> 1 } } val matrixB = primitivematrix(3,1) {...

Really nice! ```kotlin fun main(args: Array) { val colors = sequenceOf( Color.RED, Color.PINK, Color.YELLOW, Color.BLUE, Color.GREEN ) val matrix = colors.toPrimitiveMatrix( { it.red }, { it.green }, { it.blue }...

I think I'm almost ready for another release @apete. What do you think? I'll document some beautiful examples later. https://github.com/optimatika/okAlgo/blob/master/src/main/kotlin/org/ojalgo/okalgo/algebra.kt

@apete yes many times. I can definitely add the other interfaces.

Rethinking the Kotlin functions here. Taking inventory again, it looks like I need to balance having a simple Kotlin API that doesn't worry itself about lower-level implementations, while streamlining access...

I'd like to get this done by this weekend, as well as the ANN API, in time for KotlinConf 2018.