I try the exemple with the function that I use: GenEigenValueVector
When I work with Vb, My LicenseLevel is 3, but when I make an .exe it is 1 Why??
And With this LicenseLevel 1 I can't use this function whereas I have pay for the good Licence Level.
I give you the code for the exemple that I use. I have juste add the Print.
Private Sub Command1_Click()
'Generate a 2D array with random numbers and compute both its
'eigenvalues and eigenvectors.
Print "cwanalysisAdvanced:" + Str(cwanalysisAdvanced) '3
Print "cwanalysisBase:" + Str(cwanalysisBase) '1
Print "cwanalysisDSP:" + Str(cwanalysisDSP) '2
Print "cwanalysisEvaluation:" + Str(cwanalysisEvaluation) '0
Print "My LicenseLevel: " + Str(Me.CWMatrix1.LicenseLevel)
Dim x As Variant, evalreal As Variant, evalimag As Variant
Dim evecreal As Variant, evecimag As Variant
ReDim x(0 To 3, 0 To 3)
For i = 0 To 3
For j = 0 To 3
x(i, j) = Rnd
Next j
Next i
outputtype = 1 'Compute both the eigenvalues and eigenvectors
CWMatrix1.GenEigenValueVector x, outputtype, evalreal, evalimag, evecreal, evecimag
Print "It Works"
End Sub
Thank You,
Y. Goyer