I know Java is a secure language but when matrix calculations are needed, can I try something faster?
I am learning __asm{} in C++, Digital-Mars compiler and FASM. I wan
You cannot call assembly directly from Java. But you can call C code via JNI, and from there you can call assembly.
This article shows how.