MF_block_equMT
| MD_block_equMT |
ME_block_equMT |
MCF_block_equMT |
MCD_block_equMT |
MCE_block_equMT |
MI_block_equMT | MBI_block_equMT | MSI_block_equMT | MLI_block_equMT | MQI_block_equMT |
MU_block_equMT | MUB_block_equMT | MUS_block_equMT | MUL_block_equMT | MUQ_block_equMT |
|
Function | Copy the transpose of a matrix into a "block" of another matrix |
|
Syntax C/C++ | #include <MFstd.h>
void MF_block_equMT( fMatrix Dest,
unsigned destHt, unsigned destLen,
ui firstRow, ui firstCol,
fMatrix Srce, ui srceHt, ui srceLen ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::block_equMT( const ui firstRow, const ui firstCol, const matrix<T>& MSrce); |
Pascal/Delphi | uses MFstd;
procedure MF_block_equMT( MDest:fMatrix;
destHt, destLen, firstRow, firstCol:UIntSize;
MSrce:fMatrix; srceHt, srceLen:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_block_equMT( fMatrix d_Dest,
unsigned destHt, unsigned destLen,
ui firstRow, ui firstCol,
fMatrix d_Srce, ui srceHt, ui srceLen );
void MFcu_block_equMT( fMatrix h_Dest,
unsigned destHt, unsigned destLen,
ui firstRow, ui firstCol,
fMatrix h_Srce, ui srceHt, ui srceLen ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_block_equMT( d_MDest:fMatrix;
destHt, destLen, firstRow, firstCol:UIntSize;
d_MSrce:fMatrix; srceHt, srceLen:UIntSize ): IntBool;
procedure MF_block_equMT( h_MDest:fMatrix;
destHt, destLen, firstRow, firstCol:UIntSize;
h_MSrce:fMatrix; srceHt, srceLen:UIntSize );
|
|
Description | MDesti+firstRow, j+firstCol = MSrcej, i, i=0,...,srceLen-1; j=0,...,srceHt-1 |
|
|