tags:

views:

136

answers:

1

Is there an equivalent in c++(in any API/library) for Matlab repmat function ?

+3  A: 

No because there is no standard C++ matrix class to replicate. If you use a third-party matrix library (many exist), you may find it has that function available, but if you roll your own matrix class, you'll need to supply this function too.

mlimber
any freely available third party matrix libraries you can suggest?
iceman