» Home » VB Fibre
Site
News
Files

Visual Basic
Strings
Math
General
Properties
Memory
Methods

Search
Testing

Inline ASM-VB
Strings
Math
General
Memory

Search
Using inline ASM
Submit!

Use "x * x" instead of "x ^ 2" (21-02-2004)
You can use "x * x" instead of "x ^ 2". The end result will be the same.

Always use "\" instead of "/" (21-02-2004)
Major performance gain here!

Use "X 1" instead of "Cint(x)" (21-02-2004)
"X 1" is a lot faster, and the end result is the same.

Using lookup tables (21-02-2004)
Using lookup tables for (complex) matrix operations speed up your code.

Division vs multiplication (21-02-2004)
You can use a multiplication to get the same result as a division.

Int vs Fix (21-02-2004)
Hmm, not a real difference here. Both functions perform the same operation.

Division vs Multiplication (update!) (21-02-2004)
Someone pointed me on the fact that I used a wrong variable type somewhere.