Thanks for the help. It is much appreciated. I installed OpenBlas with both builds, which seemed to be recommended. I'll try some of the other libraries out and see if they work. It seems I might need to reinstall though, as only one library can be chosen during installation. Do you know of an easier way?
Regarding the m-files, I don't think it is working at the command line. I get the same behavior as with
the oct file. 2x2 matrix multiplication works but the special case does not. The following snippet works on the MINGW build, but not VS2010:
e0 = complex(0,0)
e1 = complex(1,1)
a = [e0 e1; e0 e1]
b = [e0 e0; e1 e1]
c = a*b
d = a(1,:)*b(:,1)
The octave output on the VS2010 build is:
c =
0 + 2i 0 + 2i
0 + 2i 0 + 2i
d = 0.0000e+000 + 5.7929e-195i
From: Michael Goffioul <address@hidden>
To: Mike Puglia <address@hidden>
Cc: "address@hidden" <address@hidden>
Sent: Wednesday, September 25, 2013 9:37 PM
Subject: Re: Octave 3.6.4 VS2010 and the C++ API