On 3/26/2011 4:25 AM, Johan Granberg wrote:
Definitely some would love it, me among them. This to me feels like the most
useful. Does your (dsimcha) implementation support spare matrices as well,
and if not are the api general engough to support them if someone has time
to implement them. When you say looks like normal matlab does that include
b=A\x? Regardless any standardization of linear algebra libraries would
improve on the current state in most languages.

No support for sparse matrices, but the API should have no problem supporting them eventually. It's all templates. I'd like to support b=A\x, but D doesn't have a \ operator. At any rate, it's not much more verbose to do b = solve(A, x).

Reply via email to