Page 1 of 1

Matrix library

Posted: Tue Jun 08, 2010 4:57 pm
by Lifefree
Is Fnxbasic fast eough to handle extensive matrix operations, like inverse, transpose, etc? or must be made a dll with another library?
Regards

Matrix library

Posted: Fri Jun 18, 2010 8:30 pm
by Marco
Everbody left? Well I don`t know if its fast enough.
You can simply measure the tim in a little test program like this if your array=1000 by 1000:

dim d as double,x as integer,y as integer
d=timer
for y=1 to 1000
  for x=1 to 1000
    do some calculations or so
  next x
next y

showmessage "time needed "+str$(timer-d)+" seconds"


I hope this will help a little bit

best regards