Matrix library

In this category you can exchange your programming questions and solutions.
Post Reply
Lifefree
Posts: 9
Joined: Tue Feb 07, 2012 9:49 pm

Matrix library

Post: # 649Post Lifefree
Tue Jun 08, 2010 4:57 pm

Is Fnxbasic fast eough to handle extensive matrix operations, like inverse, transpose, etc? or must be made a dll with another library?
Regards

Marco
Site Admin
Posts: 246
Joined: Sat Sep 15, 2018 8:41 pm

Matrix library

Post: # 650Post Marco
Fri Jun 18, 2010 8:30 pm

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

Post Reply