Matrix<T>.Add Scaled Into Method
            
            
            
            
            Adds two matrices.
            
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
    C#
    
 
 
A matrix whose elements are the sum of the corresponding elements of left and right.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static Matrix<T> AddScaledInto(
	Matrix<T> left,
	T factor,
	Matrix<T> right,
	Matrix<T> result
)Parameters
- left Matrix<T>
 - The first matrix.
 - factor T
 - The scale factor for right.
 - right Matrix<T>
 - The second matrix.
 - result Matrix<T>
 - The matrix that is to hold the result. May be null.
 
Return Value
Matrix<T>A matrix whose elements are the sum of the corresponding elements of left and right.
Exceptions
| Argument | left is null -or- right is null  | 
| Dimension | left and right do not have the same length. |