I am trying to multiply two vectors in Prolog but, if those vectors contain imaginary numbers, I can't get it to work. My code so far:
vector_product([X|Xs],[Y|Ys],OP) :-
inner(Xs,Ys,OP1),
OP is X*Y+OP1.
vector_product([],[],0).
|
I am trying to multiply two vectors in Prolog but, if those vectors contain imaginary numbers, I can't get it to work. My code so far:
|
|||||||||||||
|
|
See if this could help you... Formulae from Wikipedia:
Numbers are represented as
|
||||
|
|