MF_Rows_runsum
| MD_Rows_runsum |
ME_Rows_runsum |
MCF_Rows_runsum |
MCD_Rows_runsum |
MCE_Rows_runsum |
|
Function | running sum over row elements |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_runsum( fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Rows_runsum( ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_runsum( MA:fMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_runsum( fMatrix d_MA, ui ht, ui len );
void MFcu_Rows_runsum( fMatrix h_MA, ui ht, ui len );
|
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_runsum( d_MA:fMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_Rows_runsum( h_MA:fMatrix; ht, len:UIntSize );
|
|
Description | For all rows separately, each element is the sum of itself and all preceding elements. |
|
|