Serving the Quantitative Finance Community

 
User avatar
Cuchulainn
Topic Author
Posts: 20254
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

A compendium C++ open source libraries

August 25th, 2015, 11:04 am

QuoteOriginally posted by: ExSanQuoteOriginally posted by: CuchulainnQuoteOriginally posted by: ExSanQuoteOriginally posted by: HansiJust use nuget: https://www.nuget.org/packages/boost/ht ... aspxthanks HansiIt mentions Boost support up to VS2013.VS2015 RC support?I want to install Boost in VS2015? have you try it?I tried nuget but it has a weird directory structure and does not built libs..Sourceforge does everything!I tested in VS2015 and boost 1.59 asio. No problems.
Last edited by Cuchulainn on August 24th, 2015, 10:00 pm, edited 1 time in total.
 
User avatar
SierpinskyJanitor
Posts: 1
Joined: March 29th, 2005, 12:55 pm

A compendium C++ open source libraries

August 30th, 2015, 2:47 pm

OpenCv
 
User avatar
Cuchulainn
Topic Author
Posts: 20254
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

A compendium C++ open source libraries

October 21st, 2015, 8:57 am

Bayesian methods for hackers (Python)
Last edited by Cuchulainn on October 20th, 2015, 10:00 pm, edited 1 time in total.
 
User avatar
Cuchulainn
Topic Author
Posts: 20254
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

A compendium C++ open source libraries

November 21st, 2015, 12:15 pm

gmp
 
User avatar
Grodesby
Posts: 2
Joined: August 15th, 2010, 4:07 pm

Re: A compendium C++ open source libraries

September 8th, 2017, 4:13 am

Boost.Multiprecision is a good modern c++ front end to gmp and gmp-like things such as mpfr
 
User avatar
GiusArg
Posts: 17
Joined: January 26th, 2022, 5:35 pm

Re: A compendium C++ open source libraries

April 20th, 2022, 1:43 pm

Hello, I'm quite new to this forum, joined as a January 2022 CQF delegate.

As a C++ developer I must admit a bit of envy towards Python for having excellent statistical and numeric libraries such as Pandas and Numpy. In particular I've been searching something equivalent to Pandas for C++ and it turns out that someone has already "ported" it to C++, at least partially.

The project is very active and it's called DataFrame and it's hosted on github

https://github.com/hosseinmoein/DataFrame

I still haven't tried it, but if it delivers what it says on the label, it is very promising.
 
User avatar
Cuchulainn
Topic Author
Posts: 20254
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: A compendium C++ open source libraries

August 4th, 2022, 9:41 am

Hello, I'm quite new to this forum, joined as a January 2022 CQF delegate.

As a C++ developer I must admit a bit of envy towards Python for having excellent statistical and numeric libraries such as Pandas and Numpy. In particular I've been searching something equivalent to Pandas for C++ and it turns out that someone has already "ported" it to C++, at least partially.

The project is very active and it's called DataFrame and it's hosted on github

https://github.com/hosseinmoein/DataFrame

I still haven't tried it, but if it delivers what it says on the label, it is very promising.
look at Boost C++ Fusion, Multiindex,Bimaap 
can build your own version in C++?
 
User avatar
GiusArg
Posts: 17
Joined: January 26th, 2022, 5:35 pm

Re: A compendium C++ open source libraries

August 4th, 2022, 8:21 pm

look at Boost C++ Fusion, Multiindex,Bimaap 
can build your own version in C++?
These seem to be general purpose libraries, while DataFrame aims to be a substitute for Python Pandas (or at least for its dataframes).