<div class="gmail_quote">On Tue, Feb 22, 2011 at 16:42, Clemens Domanig <span dir="ltr">&lt;<a href="mailto:clemens.domanig@uibk.ac.at">clemens.domanig@uibk.ac.at</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Maybe someone knows a library with commands that are similar to MatLab because I have to port hundreds lines of MatLab-code to C++.</blockquote></div><br><div>From C++, you might consider a template library like Eigen (<a href="http://eigen.tuxfamily.org">http://eigen.tuxfamily.org</a>). It overloads the usual arithmetic operators and performance is very good for small sizes. The downside is longer compilation time than a classic library and confusing error messages if you have type errors.</div>