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
Matrix library
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
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