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