Matrix Algebra

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

It seems VB.net has something different in mind with its Matrix class (used
to define geometric transforms).

Instead of writing numerous loops and spending a week on debugging, is there
a library available for doing matrix algebra?

Eg. C = A * B where each of the variables is a matix (2D array)
 
you can declare your variables as array's

dim A(5) as integer

A(1) = 12541
A(2) = 5648
.....

make more dimensions
dim B(5,20,3) as integer
A(1,1,1) = 456
A(1,5,2) = 478
.......

you can also declare an array like this if you don't know how big your array
should be....
A(,)
and then later on in your programme

redim A(somevariable,somevariable)

greets,
 
Back
Top