#include "back_substitute.hpp"
template < int RowsColsA, typename InputType, typename OutputType, typename TRAITS = backSubstituteTraits<RowsColsA, InputType, OutputType> > void backSubstitute ( hls::stream <InputType>& matrixAStrm, hls::stream <OutputType>& matrixBStrm, int& is_singular )
backSubstitute
Parameters:
| RowsColsA | Row and column dimensions |
| InputType | Input data type |
| OutputType | Output data type |
| TRIATS | Traits class |
| matrixAStrm | Stream of Input matrix |
| matrixBStrm | Stream of Output matrix. |
| is_singular | Indicates the diagonal of B contains zeros. |