MI_neg | MBI_neg | MSI_neg | MLI_neg | MQI_neg |
|
|
Syntax C/C++ | #include <MFstd.h>
void MF_neg( fMatrix MB, fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::neg( const matrix<T>& MA ); |
Pascal/Delphi | uses MFstd;
procedure MF_neg( MB, MA:fMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_neg( fMatrix d_MB, fMatrix d_MA, ui ht, ui len );
void MFcu_neg( fMatrix h_MB, fMatrix h_MA, ui ht, ui len );
|
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_neg( d_MB, d_MA:fMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_neg( h_MB, h_MA:fMatrix; ht, len:UIntSize );
|
|
Description | MBi,j = -MAi,j |
|
|