%SOLVE(A,B)
Posted: Fri Oct 01, 2010 1:59 pm
Input:
declare vector[integer] identity(17)
ewise identity(i)=1
declare rect[integer] d(17,17)
ewise d(i,i)=1
dis %SOLVE(d,identity)
Output:
Can't Find Match for %SOLVE(IMATRIX,INDEX). Closest Match is %SOLVE(RECTANGULAR,VECTOR)
## SX27. Illegal Combination of Data Types for Operation
Does anyone see what's wrong with my program ? Specifically, the vector I created called identity is recognised as an INDEX
from the %Solve function. Not sure why is that, any help is appreciated.
declare vector[integer] identity(17)
ewise identity(i)=1
declare rect[integer] d(17,17)
ewise d(i,i)=1
dis %SOLVE(d,identity)
Output:
Can't Find Match for %SOLVE(IMATRIX,INDEX). Closest Match is %SOLVE(RECTANGULAR,VECTOR)
## SX27. Illegal Combination of Data Types for Operation
Does anyone see what's wrong with my program ? Specifically, the vector I created called identity is recognised as an INDEX
from the %Solve function. Not sure why is that, any help is appreciated.