Re: [Gambas-user] Matrices byref

2014-01-20 Thread martin p cristia
On 20/01/14 01:28, gambas-user-requ...@lists.sourceforge.net wrote: >> I need this global matrix: >> > >> >Public MatRigGlo[12, 12] As Float >> > >> >that in some cases it needs to be [3,3] or [6,6] >> >I pass that matrix to a C library: >> > >> >Public Extern M8simetrizarSQ(matriz As Float[], lOr

Re: [Gambas-user] Matrices byref

2014-01-19 Thread Benoît Minisini
Le 17/01/2014 00:15, martin p cristia a écrit : > I need this global matrix: > > Public MatRigGlo[12, 12] As Float > > that in some cases it needs to be [3,3] or [6,6] > I pass that matrix to a C library: > > Public Extern M8simetrizarSQ(matriz As Float[], lOrden As Long) > > and the call is > >

[Gambas-user] Matrices byref

2014-01-16 Thread martin p cristia
I need this global matrix: Public MatRigGlo[12, 12] As Float that in some cases it needs to be [3,3] or [6,6] I pass that matrix to a C library: Public Extern M8simetrizarSQ(matriz As Float[], lOrden As Long) and the call is M8simetrizarSQ(MatRigGlo, 12) wich works perfectly. But its inefic