| MatSetArray Method (Int32, Int32, Vec4f) | 
        
         
            Set the specified array data to this matrix
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void SetArray(
	int row,
	int col,
	Vec4f[,] data
)
Public Sub SetArray ( 
	row As Integer,
	col As Integer,
	data As Vec4f(,)
)
public:
void SetArray(
	int row, 
	int col, 
	array<Vec4f,2>^ data
)
member SetArray : 
        row : int * 
        col : int * 
        data : Vec4f[,] -> unit 
function SetArray(row, col, data);
Parameters
- row
- Type: SystemInt32
 
- col
- Type: SystemInt32
 
- data
- Type: OpenCvSharpVec4f
 
 See Also
See Also