ASM Triangle Row
Returns a row of the alternating sign matrix triangle.
Controller: CodeCogs
Interface
C++
Asm Triangle Row
std::vector<int>asm_triangle_row( | int | n | ) |
References:
SUBSET, a C++ library of combinatorial routines, http://www.csit.fsu.edu/~burkardt/cpp_src/subset/subset.htmlExample 1
#include <codecogs/maths/combinatorics/sequences/asm_triangle_row.h> #include <iostream> int main() { std::vector<int> result = Maths::Combinatorics::Sequences::asm_triangle_row(4); std::cout << "Size of row: " << result.size() << std::endl; for (int j = 0; j < result.size(); j++) std::cout << result[j] << " "; std::cout << std::endl; return 0; }
Output:Size of row: 5 42 105 135 105 42
Returns
- the entries of the row
Authors
- Lucian Bentea (August 2005)
Source Code
Source code is available when you agree to a GP Licence or buy a Commercial Licence.
Not a member, then Register with CodeCogs. Already a Member, then Login.